程式CODE

2016年10月30日 星期日

git指令備忘

git config --global user.name "username"
git config --global user.email "username@email.com"
git config --global push.default matching
// 明確指定 push 的方法
git config --global core.editor "vim"  
// 將預設編輯器設成vim

1.目前狀況
git status

2.加入追蹤
git add 檔案

3.加入版本說明
git commit -m "說明"

4.建立版控
git remote add origin https://github.com/帳號/專案.git

5.送上去
git push origin master

git push -u origin master(下次只要打git push)


6.上傳紀錄
git log
git log --oneline
7.查版本
git remote -v

8.當下分支
git branch


下載已在github上的專案
git clone https://github.com/帳號/專案.git


日後修改:

1.加入
git add 檔案

2.說明
git commit -m "說明"

3.送上去
git push origin master

免再填帳密上傳
修改 .git/config
找到
url = https://帳號:密碼@github.com/帳號/專案.git
(以此方式,atom即可用git plus上傳)

沒有留言:

張貼留言