bug 브랜치는 로컬 저장소에만 있는 브랜치입니다. bug 브랜치를 원격 저장소의 bbb 리모트 브랜치로 업스트림 설정하겠습니다.
infoh@DESKTOP MINGW64 /e/gitstudy06 (bug)
$ git branch -u origin/bbb 업스트림 연결
Branch 'bug' set up to track remote branch 'bbb' from 'origin'.
infoh@DESKTOP MINGW64 /e/gitstudy06 (bug)
$ git branch -vv 트래킹 브랜치 목록
aaa c162b67 [origin/aaa] testing aaa
* bug c162b67 [origin/bbb: ahead 1] testing aaa
feature 85f1dfa [origin/function] functionmaster2 working
footer d84766c first
hotfix dcdb1c1 [origin/hotfix] master working...
master dcdb1c1 [origin/master] master working...
로컬 저장소의 bug 브랜치가 원격 저장소에 있는 aaa 리모트 브랜치의 트래킹 브랜치로 업스트림되었습니다.