git
强制恢复远程
git fetch --all
git reset --hard origin/master // 注意后缀master代表远程分支
git pull
push到新建分支
git branch new-branch
git checkout new-branch
然后使用git add和git commit命令来提交更改。
git push origin new-branch
合并本地commit
git rebase -i <合并的前一个提交>
git clone 指定分支
git clone -b <branch> https://github...