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 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
网友评论