2012-06-30 57 views

回答

29

GitHub上給你說明你已經創建了庫後,網上。

cd與本地資源庫

git remote add origin whatever-address-my-repository is.git設置遠程

再做出承諾,並推到主分支的目錄。

git push -u origin master

https://help.github.com/articles/create-a-repo

+1

'git的遠程添加原產什麼地址,我的倉庫是。 git'和'git push origin HEAD:master' –

+0

太好了,謝謝!另外,我該如何讓git不要每次都問我用戶名? – corazza

+0

@Bane一旦你已經將你的repo添加到遠程,只需在提交之後用'git push -u origin master'推送它即可。你只會被問你的ssh密鑰。 – nims

4

1.創建一個README.md在你的本地倉庫(用於GitHub - *optional

2. git remote add origin <your_URL_for_github_repo.git>

(您可以通過輸入git remote -v來驗證您是否有origin。您可以看到<URL>.gitorigin)。

3.Make提交由git commit -a -m "<a message>"

(重要!只有提交的文件將被推到Github上)由git push -u origin master

4.Now推GitHub上(如果你推主分支)。

您將您每按一次需要密碼(如果您使用克隆https:)。爲了擺脫那個;

在終端,輸入以下命令:

git config --global credential.helper cache 
# Set git to use the credential memory cache 

要更改默認密碼緩存超時,輸入以下命令:

git config --global credential.helper 'cache --timeout=3600' 
# Set the cache to timeout after 1 hour (setting is in seconds) 
相關問題