git
git合并多个提交, 即同时合并多个commit,一次push
git reflog 查看历史所有提交
git rebase 默认master,即变基
git log --pretty=oneline或者git log --oneline
git log --graph 可以查看到所有分支提交
git reset --hard xxx 会使得工作区、缓存区、本地库同步变更指针
git reset --soft xxx 只会变更本地库指针
git reset --mixed xxx 会变更缓存区、本地库指针
常见问题:
- 配置https链接没反应,现在已经采用token的方式
- 建议直接配置公钥,采用ssh链接的方式链接,这样最快速,方便
- Git/Github Peer’s certificate issuer has been marked as not trusted by the user: git config [--global] http.sslVerify false (https://discuss.devopscube.com/t/solved-git-github-peers-certificate-issuer-has-been-marked-as-not-trusted-by-the-user/474)