1. 程式人生 > >git 創建本地倉庫與 gitcafe 關聯

git 創建本地倉庫與 gitcafe 關聯

git

git init # 創建本地倉庫 # 設置遠程倉庫地址,這裏可以設置ssh 或 https 的形式,此處設置為https 格式, # ssh 格式為 : git remote add origin [email protected]:sql031625/test.git git remote add origin https://git.coding.net/sql031625/test.git touch a.py # 創建文件,使倉庫有新的變更 git add . # 添加所有變更 git commit -m 'first' # 註釋 git push -u oringin master # 推送代碼,第一次使用 -u ,以後便可以不使用 -u 參數 # 可以設置 git config --global push.default matching命令,使得push命令默認push到github的同名倉庫中

若最後一步出錯,

ralap@Ubuntu:~/data/coder/webtest$ git push -u origin master
Username for 'https://git.coding.net': sql031625
Password for 'https://[email protected]': 
To https://git.coding.net/sql031625/webtest.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'https://git.coding.net/sql031625/webtest.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

原因分析:在github上重新創建倉庫,建立README.md,導致該文件不在本地代碼中,執行以下命令,將git 倉庫中的文件與本地合並,然後再上傳即可

git pull --rebase origin master
git push -u oringin  master


git 創建本地倉庫與 gitcafe 關聯