1. 程式人生 > >git的常用提交流程用到的命令

git的常用提交流程用到的命令

  1. 先把本地的更改暫存到stash裡
git stash save '本地更改的內容說明' git stash apply
  1. 把檔案提交到本地倉庫
git add 你修改的檔案路徑 git commit -a
  1. 同步本地倉庫到伺服器
git push
  1. 合併分支到主幹
git checkout 主幹的名字 git merge 你的分支的名字