标签:origin TE 命令 -- 本地 注意 备忘 store 切换
git config --global credential.helper store
git checkout -b 本地分支名x origin/远程分支名x
git fetch origin 远程分支名x:本地分支名x
git checkout master //切换分支
git stash
git fetch
git pull
git reset --hard <版本号> // 注意使用 --hard 参数会抛弃当前工作区的修改
git reset --sort // 使用 --soft 参数的话会回退到之前的版本,但是保留当前工作区的修改,可以重新提交
git push origin <分支名> --force // 强制push
git commit --amend // 修改注释
标签:origin TE 命令 -- 本地 注意 备忘 store 切换
原文地址:https://www.cnblogs.com/cdfive2018/p/9164684.html