[Git] 提交一個更新
以下要介紹最基本的同步, 檔案在本機被修改或是增加後push到github。
1.檢視所有檔案狀態
$ git status #修改或是增加的檔案會呈現紅字
2.告知git需要commit的檔案
$ git add <file> #提交一個新增加的檔案
$ git add -A #stages All
$ git add . #stages new and modified, without deleted
$ git add -u #stages modified and deleted, without new
add完後用 git status
會發現原本的紅字變成綠字
3.commit變化
$ git commit
這時候需要記錄提交的訊息
4.push同步
$ git push
主要流程,
增加、修改檔案
> git add
> git commit
> git push
透過git status
可以查看目前的狀態