목록remote (3)
아미(아름다운미소)
There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull If you wish to set tracking information for this branch you can do so with: git branch --set-upstream-to=origin/ master ============================================== -u`나 `--set-upstream-to 옵션 줘서 로컬 master가 origin/master를 추적하게끔 해줍니다. $git branch --se..
기존 리포지토리 remote 제거 $git remote remove origin 새 리포지토리 remote 추가 $git remote add origin https://github.com/계정/리포지토리 리포지토리확인 $git remote --v
remote리모트 저장소 목록로컬 저장소에 등록된 리모트 저장소를 모두 출력하되 단축이름만 표시합니다.git remote리모트 저장소 URL 확인리모트 저장소의 단축이름과 URL을 표시합니다.git remote -v리모트 저장소 URL 바꾸기git remote set-url origin https://github.com/USERNAME/REPOSITORY.git리모트 저장소 추가git remote add 단축이름 주소git remote add remoteRepo https://noritersand@dev.naver.com/git/exlernforscm.git리모트 저장소 살펴보기특정 로컬 저장소의 구체적인 정보(URL, 추적중인 브랜치 등)를 표시합니다.git remote show origin # ori..