git 备忘

git坑好多,备忘

恢复一个文件夹的历史版本

git checkout 1c3992722c93df9df1949a2a5ee7ca4b7d7e58ce(版本号) app/views/people/expert2/*(文件夹)

---------------------------------

都是泪啊,我修改了一天的代码失败之后,我想恢复到原来版本,就直接git checkout .

然后,找到了解决问题的办法,做了一些修改之后,pull的时候,报错

You are not currently on a branch, so I cannot use any
'branch.<branchname>.merge' in your configuration file.
Please specify which remote branch you want to use on the command
line and try again (e.g. 'git pull <repository> <refspec>').
See git-pull(1) for details.

(此上的情况,我也没法子重现,不知道何时丢失分支的)

查了一下gg,说直接找回版本就好,

我先全备份了一下(不知道为啥,里面居然是空的)

#git checkout 分支
Your branch is behind 'origin/master' by 3 commits, and can be fast-forwarded.
好吧,没有了,
改了一天的东西没有。。。。

好像 checkout 版本号,之后就丢失分支了

--------------------------------------

你可能感兴趣的:(git)