git使用问题汇总

 如果远程仓库分支删掉了,恢复步骤
 1、git branch -a
     这里会显示本地和远程的所有历史分支名,远程分支名称前会有(remotes/origin/)
 2、git log origin/v1_develop_ut_vrc
     这里选择想要恢复的远程分支:v1_develop_ut_vrc,查看commit log
[dsware_vbs_cache_v1r3c50]$ git log origin/v1_develop_ut_vrc
commit cf6efd2f022c125a44ce54c8d66fab56210e7d68


    osd test case can success
 3、git checkout -b test cf6efd2f022c125a44ce54c8d66fab56210e7d68
     将其恢复到本地分支,取名为 test

你可能感兴趣的:(git使用问题汇总)