git 常用操作

自作多情 提交于 2020-04-18 13:07:24

多仓库推送

.git/config

[remote "origin"]
        url = git@gitee.com:attacker/ldap-password.git
        url = git@github.com:L00J/ldap-password.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master

代码回滚

sourcetree

git log # 查看提交历史
git reset --hard d9ef373e143b #hard 硬操作; 恢复状态到指定一次提交
git reset --hard  HEAD~2 #  恢复状态到最后第二次

push -u origin master   -f # 强制提交到远程仓库
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!