跳到主要内容

常用命令

推送代码到远程仓库并设置上游:
git push -u origin main

组合命令 commit & add:
git commit -am "massage"

查看历史提交:
git lot --oneline


常见问题

Q: repository has different history / 仓库有不同提交历史
A: git pull origin/main main --allow-unrelated-histories

配置email & usename:
git config --global user.name
git config --global user.email


Quick Coomands Reference
官方指南