一、提交問題
a豁延、命令:
$ git commit -m "update the blog"
b、現(xiàn)象:
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
modified:? .idea/workspace.xml
modified:? blogs.html
no changes added to commit
c、方案:
??????? 只有暫存區(qū)域的文件(即:文件狀態(tài)為“Changes to be committed”)才會(huì)被提交怒见。正如提示:
Changes not staged for commit:
modified:? .idea/workspace.xml
modified:?? blogs.html
有兩個(gè)文件被修改,但是沒有被提交姑宽,通過“git add fileName”命令將已修改文件更新到暫存區(qū)域中遣耍,如果想撤銷修改,可以使用“git checkout -- fileName”命令
此處可以使用命令:
$ git add blogs.html
以及
$ git add \.idea
將文件添加到暫存區(qū)炮车,再通過命令:
$ git commit -m "update the blog page"
以及
$ git push origin master
提交到遠(yuǎn)程庫舵变。
二、提交沒有add瘦穆,commit問題
error:src refspec master does not match any
本地版本庫為空, 空目錄不能提交 (只進(jìn)行了init, 沒有add和commit).