不积跬步无以至千里,后继才能薄发
1 | projectPath/.git/config 添加 |
1 | ssh-keygen -o |
1 | git branch -a //查看所有分支(远程和本地) |
1 | git stash//将当前分支修改的暂存 |
1 | git branch --set-upstream-to=origin/'远程分支' '本地分支' //设置一个分支的追踪远程分支 |
1 | git remote add origin git@github.com:michaelliao/learngit.git |
1 | git push origin newBranch |
1 | // 方法一(不会删除提交历史记录,会新建一个提交作为回滚) |
1 | git reflog//查看所有分支的所有操作记录 |
1 | git reset --merge |
1 | git checkout master// 将分支切换到merge |
1 | git cherry-pick {logNum} |
1 | git remote set-url origin [new Origin] |