Git-基本指令
簡單介紹 Git 的使用方式
簡單流程
把Github上的code
1
git clone [repository]
進到該目錄中
1
2git branch [branch_name] //新branch
git checkout [branch_name] //切換branch開始修改檔案(重複動作,直到 git status 顯示無修改)
1
2
3git status //看狀態
git add [file_name] //加入檔案[git add . (加入全部)]
git commit -m "message" //註解準備上傳
1
2
3
4git checkout master //切換到master
git merge [branch_name] //和master merge起來
git push //上傳
/*git push origin master (第一次push到空repo需要加origin)*/
註:當然偷懶一下也是可以不要生成新branch,就不用marge,直接修改master的說。
其他實用指令
1 | git log //顯示提交的歷史記錄 |
希望這篇文章有幫助到您的開發之路!如果能給我一些按讚支持,我會非常感謝您的鼓勵!祝壞蟲遠離您!
評論