美文网首页
git常用命令

git常用命令

作者: 少女萌的进击之路 | 来源:发表于2021-08-14 22:54 被阅读0次

git add .

git commit -m {msg}

git commit --amend --no-edit 向上一次提交追加

git push 

git stash save {msg}

git stash list

git stash pop #把stash中的最新存储覆盖本地代码

git branch

git co {branch}#切换分支

git merge origin/{branch} --no-ff --log

相关文章

网友评论

      本文标题:git常用命令

      本文链接:https://www.haomeiwen.com/subject/ezlybltx.html