因此,我已經使用git checkout -b [branch]和git add在我的PC上將文件初始提交到GitHub。和git commit以及所有這些。我現在已經對該文件進行了更改,如何在GitHub上更新該文件並添加提交消息?將文件更新推送到GitHub
我試過在文件上添加git,但它已經添加了,git status沒有提交任何內容。
有人可以幫忙嗎?謝謝:)
因此,我已經使用git checkout -b [branch]和git add在我的PC上將文件初始提交到GitHub。和git commit以及所有這些。我現在已經對該文件進行了更改,如何在GitHub上更新該文件並添加提交消息?將文件更新推送到GitHub
我試過在文件上添加git,但它已經添加了,git status沒有提交任何內容。
有人可以幫忙嗎?謝謝:)
解決了!我在Android Studio中編輯該文件,但是當我保存該文件時,由於某種原因,它沒有被Git或nano拾取。我用nano編輯它,然後運行git add。,git commit和git push。
現在我只需要知道爲什麼Android Studio中實際上並沒有保存的文件正確...
感謝您的幫助!
您需要將分支push
到remote
庫在GitHub上:
$ git push origin [your-branch-name]
如果分支機構不具有遠程倉庫,但(其中遙控器是在GitHub庫),你必須把它與添加到您的項目:
$ git remote add origin [the-url-you-obtain-from-your-github-repo]
可能重複與https://stackoverflow.com/questions/927358/how-to-undo-the-last-commits-in-git/6866485#6866485 – Gagantous
git push origin [你的分支] –
你能告訴我們'git branch -vva'和'git status'和'git remote -vv' –