# PID GIT ###### tags: `PID` # 上傳 git add . git status git reset HEAD 不要的檔案 (移除add) git commit -m 命名 git stash git stash list git push -u origin 分支名稱 # 分支名稱 git checkout -b 分支名稱 >分支名稱: http://rda-wiki.vir888.com/doku.php/rda/front/git_%E5%88%86%E6%94%AF%E5%91%BD%E5%90%8D%E8%A6%8F%E7%AF%84 git status # 上傳至開發站 git checkout develop git pull -p (先拉到最新) git merge 分支名稱 (合併) git push (最後要切回來)