使用github步驟:
1、申請github帳戶 *** ,建立名為new-project的新repository
2、安裝git客戶端(linux)
#yum install git git-gui
3、 生成金鑰對,這樣專案可以push到 github上
#ssh-keygen -t rsa -c "***@gmail.com"
4、將.ssh/id_rsa.pub拷貝到github**
5、為了方便,設定ssh不輸入口令
# eval `ssh-agent`
# ssh-add
(輸入passphrase)
6、測試是否能聯通github
#ssh [email protected]
如果配置正確,顯示
error: hi ***! you've successfully authenticated, but github does not provide shell access
connection to github.com closed.
7、設定git全域性使用者配置
# git config --global user.name "***"
# git config --global user.email ***@gmail.com
8、建立本地新專案工作樹
# mkdir new-project
# cd new-project
# git init
# touch readme
# git add readme
# git commit -m 'first commit'
定義遠端伺服器別名origin
# git remote add origin [email protected]:***/new-project.git
本地和遠端合併,本地預設分支為master
# git push origin master
github**上就可以看見了,
9. 更新檔案
# vi readme
自動commit更改檔案
# git commit -a
更新至遠端
# git push origin master
初次使用GitHub和Git(一)
參考 github中repositories與projects區別 repositories projects 倉庫 專案板倉庫就像專案的資料夾 github 上的專案板幫助您組織工作和排列工作的優先順序 git支援https和git兩種傳輸協議,github分享鏈結時會有兩種協議可選。git使用h...
github初次使用
1 mkdir gitrepo 建立本地的倉庫資料夾 2 cd gitrepo 進入該長褲資料夾 3 git init 初始化本地倉庫 4 git add 新增要push到遠端倉庫的檔案或資料夾 5 git commit m first commit 提交剛剛新增的檔案,提交到本地倉庫 6 git ...
GIT初次使用
遠端倉庫 分支管理 標籤 版本號 windows建立目錄不得有中文,防止亂碼最好用nodepad 設定編碼為utf 8進行編輯 1 建立目錄 在git bash.exe視窗中寫入,mkdir cataloguename 2 進入目錄,cd cataloguename 3 檢視目錄,pwd 4 設定為...