前幾天不小心刪掉專案,還好有存到github,不過還是對git不熟git clone專案下來看到的分支只有master,心裡想慘了,直接瀏覽器下載下來的分支也沒有master,後來google找到其實git clone下來的專案他的分支是隱藏下來的如下:
1.查看隱藏的分支
git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/develop
remotes/origin/feature
remotes/origin/feature-im
remotes/origin/master
remotes/origin/newbranch
2.切換隱藏的分支
git checkout origin/feature
3.在本地創建隱藏的分支
git checkout -t origin/feature
4.用gitk查看做了什麼
gitk --all &