參考:
按照流程建立repo,建立完以後會有如下介面:
global setup:
set up git
git config --global user.name "" //輸入使用者名稱
git config --global user.email ***@163.com
next steps:
mkdir testrepo
cd testrepo
git init
touch readme
git add readme
git commit -m 'first commit'
git remote add origin [email protected]:xwdreamer/testrepo.git
git push -u origin master
existing git repo?
cd existing_git_repo
git remote add origin [email protected]:xwdreamer/testrepo.git
git push -u origin master
importing a subversion repo?
click here
when you're done:
continue
執行完next steps中的所有步驟,我們會在github上看到我們新建的testrepo.git。
當我們再次想往專案裡面建立檔案是,我們這個時候使用
git push -u origin master
來提交報錯如下:
***@*** ~/hello-world (master)
$ git push -u origin master
to [email protected]:***/hello-world.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:***/hello-world.git'
to prevent you from losing history, non-fast-forward updates were rejected
merge the remote changes (e.g. 'git pull') before pushing again. see the
'note about fast-forwards' section of 'git push --help' for details.
根據提示我們先使用
git pull
再使用
git push
使用Github總結
1.使用git gui 首先熟悉一下gui,如下 第一步,首先將 fork到自己的版本庫下面,如下 並獲取clone url,如下圖 然後點選gui轉殖已有版本庫,如下圖 點選轉殖就可以得到下面的介面 得到的目錄如下 這就就是clone下來的 當改動本地 的時候,比如rakefile檔案改變。當需要...
github與markdown使用總結
初次接觸github是在師兄的介紹下,註冊完成github賬戶之後,給我的感覺是困難重重,一方面是英文,另一方面是看到的是大量的原始碼,不知從何下手。但是萬事開頭難,經過一段時間的摸索後,漸漸的熟悉了。故在此簡單介紹下github。另外還有markdown編輯器。如今的軟體開發不僅是 編寫,而且也包...
GitHub 使用方法總結
git config的配置 用webstrom開啟.git 在本地新建的資料夾中,預設隱藏 找到config配置檔案 連線了自己的遠端倉庫後,config資料夾下預設出現了url 使用者名稱 專案名.git 本地更新別人遠端的內容到自己的本地,需要三步,但是以後兩步 更新 git remote up...