本地修改

2018-02-24 16:16 更新

顯示工作路徑下已修改的文件:

$ git status

顯示與上次提交版本文件的不同:

$ git diff

把當(dāng)前所有修改添加到下次提交中:

$ git add 

把對(duì)某個(gè)文件的修改添加到下次提交中:

$ git add -p <file>

提交本地的所有修改:

$ git commit -a

提交之前已標(biāo)記的變化:

$ git commit

附加消息提交:

$ git commit -m 'message here'

提交,并將提交時(shí)間設(shè)置為之前的某個(gè)日期:

git commit --date="`date --date='n day ago'`" -am "Commit Message"

修改上次提交
請(qǐng)勿修改已發(fā)布的提交記錄!

$ git commit --amend

把當(dāng)前分支中未提交的修改移動(dòng)到其他分支

git stash
git checkout branch2
git stash pop
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)