当前位置: > 其它学习 > Git >

Git小技巧

时间:2019-02-01 16:40来源:未知 作者:IT
Git远程版本回滚

方法一:

1、新建backup分支 作为备份,以防万一

git branch backup
1
2、将本地的backup分支 推送到远程的backup

git push origin backup:backup



3、本地仓库彻底回退到xxxxx版本,xxxxx版本之后的commit信息将丢失

git reset --hard  xxxxx


4、删除远程的master分支 (注意master前有个:)

git push origin :master
1
主要远程仓库的master如果是保护分支将报错,请去掉对分支的保护设置:

remote: GitLab: You are not allowed to deleted protected branches from this project.
To http://gitlab.mogujie.org/shihao/afanty.git
! [remote rejected] master (pre-receive hook declined)
error: failed to push some refs to 'http://gitlab.mogujie.org/xxxx/xxxx.git'


5、重新创建远程master分支(这跟第1次提交本地代码库给远程仓库的命令一样)

git push origin master


方法二:
1、本地代码回滚到上一版本(或者指定版本)

git reset --hard HEAD~1



2、加入-f参数,强制提交,远程端将强制跟新到reset版本

git push -f origin master


注:方法二前建议如方法一一样备份当前git中的数据,个人推荐方法二

Git修改本地的远程仓库密码
更改密码步骤:
1.失效

git config --global credential.helper 'cache --timeout=1'


2.永久保存

git config --global credential.helper store


(责任编辑:IT)
------分隔线----------------------------