git add:添加文件到缓存命令 git add . 提交当前目录全部文件
git commit:提交命令 git commit -m '描述'(可不进入命令行)
git reset HEAD:取消缓存命令 git reset --hard id
git config --global user.name '你的用户名'
git config --global user.email '你的邮箱'
git remote add [alias] [url] 添加远程仓库
git checkout --track <remote-branch-name> 检出远程已有分支并跟踪
git merge <> --allow-unrelated-histories 允许合并不相干 主要用于首次吧已有代码提交到代码仓库
最后修改:2024 年 02 月 18 日
© 允许规范转载