반응형
git에서 repository 관리가 필요하다.
local workspace에서 작업을 한 후,
git에 push를 하면 내 github에 있는
repository로 코드 관리가 가능하다.
외부 저장소를 사용하기 위해서는
먼저 remote 설정을 해줘야 한다.
1. remote 확인
git remote -v
2. remote 추가
git remote add "REMOTE NAME" "REMOTE URL"
3. remote 수정
git remote rename "ORIGINAL NAME" "NEW NAME"
4. remote 삭제
git remote rm "REMOTE NAME"
5. remote branch 삭제
git push "REMOTE NAME" --delete "BRANCH NAME"
6. remote default setting
git remote -u "REMOTE NAME" "REMOTE URL"
리모트 설정이 되어 있어야
PUSH가 가능하고, 브랜치 관리가
가능하다.
반응형
'Programming' 카테고리의 다른 글
CSS 3분만에 끝장내기 (0) | 2021.09.24 |
---|---|
Git reset commit add push 도중 실수한 경우 되돌리는 방법 (0) | 2021.09.23 |
Git 작동원리 workflow 이해 (0) | 2021.09.23 |
git@github.com: Permission denied (publickey). fatal: Could not read from remote repository. (0) | 2021.09.22 |
Github branch #2 Pull Request (0) | 2021.09.21 |
Git branch 새로운 브랜치를 만들어 보자 (0) | 2021.09.21 |
댓글