2011-11-06 158 views
0

我是Git和Github的新手。我創建了一個存儲庫,但無法添加文件並在終端上進行更新。無法更新github上的存儲庫

到目前爲止,只有已工作的事情是$ git add .

當我嘗試做$ git push它說:

error: failed to push some refs to '[email protected]:emailadress'

當我嘗試做$ git pull它說:

You have not concluded your merge (MERGE_HEAD exists).

當我嘗試做$ git status它說:

Changes to be committed:

modified: .DS_Store

modified: README

我該怎麼辦?

回答

1

git add .之後你是否提交了你添加的文件?東西沿線git commit -am "Initial commit"

+0

謝謝。我試過了,它修復了它。問問你是否可以解釋那條線是幹什麼的? – Mahir

+1

當然,但它是如何工作的基礎,所以我肯定會建議看看[git教程](http://schacon.github.com/git/gittutorial.html)。基本上,您告訴git「保存」您在git存儲庫中所做的任何更改。你用'git add .'添加了要跟蹤的文件,並且需要用'git commit'保存這個改變(你添加了文件)。你可以找到像這樣的特定命令的幫助:'git help commit' – mattyohe