기존 Github에 올라가있는 프로젝트를 새로운 저장소로 옮기고 싶을 때는 repository 주소를 변경해주면 되는데
1. 현재 연결된 주소를 확인할 때
git remote -v
// 결과
origin https://github.com/[깃헙아이디]/[프로젝트명].git (fetch)
origin https://github.com/[깃헙아이디]/[프로젝트명].git (push)
2. 새로운 주소 연결하기
2-1. remote set-url로 연결
git remote set-url origin [새로운 저장소 URL]
// example
git remote set-url origin https://github.com/[깃허브아이디]/[프로젝트명].git
2-2. 기존 연결을 지우고 새로 연결
git remote remove origin
git remote add origin [새로운 저장소 URL]
//example
git remote remove origin
git remote add origin https://github.com/[깃허브아이디]/[프로젝트명].git
3. 바뀐 주소가 맞는지 git remote -v로 확인
4. 프로젝트 push하기
git init // directory에 git 생성
git add . // 소스 트리에 update된 모든 파일 추가
git add [파일명] // 소스 트리에 특정한 파일 추가
git commit -m 'commit-message' // commit 메세지 남기기
git push origin master // master 브랜치에 push
5. Github에 잘 올라갔는지 확인
'Programming > Git' 카테고리의 다른 글
[git] 협업을 위한 커밋/브랜치 관리 문서 (0) | 2024.07.24 |
---|---|
[Git] fatal: not a git repository (or any of the parent directories): .git 에러 해결 (0) | 2022.09.06 |
[Git] 불필요한 파일이 git에 올라가지 않도록 방지 .gitignore 설정 (0) | 2022.05.11 |