2015年10月21日 星期三

github 流程

開cmd 先 cd到目標資料夾

git init (新建一個.git的隱藏式資料夾 他能告知github 我要處理這資料夾了  第一次上傳才用 之後有.git資料夾就不用了)

然後在 git clone https://github.com/qwe81301/xxx.git




git status
如果檔案有變動 會出現紅字的東西

git add .

在一次 git status  有git add過 就會變成綠色



git commit -m "描述紀錄 讓自己知道那次改變甚麼東西"
(連commit的命名都是有潛規則在的!! )
EX:git commit -m "isAppInstalled 判斷是有有安裝過apk"


創建分支 但不切換
git branch isAppInstalled

可用git branch -a 查看所有分支


git push https://github.com/qwe81301/C-1.git master
git push  https://github.com/qwe81301/gsoap.git master
要做一些設定
git remote add origin https://github.com/qwe81301/gsoap.git
https://github.com/qwe81301/gsoap.git
(用https 有時很慢,好像是因為檔案比大,所以有人推薦說用 ssh)

輸入 github 帳密

就上傳成功了

2017.09.20 編輯更新
還可以用一個工具可以直接看git線圖
Git Log Package
https://atom.io/packages/git-log
當初是直接在ubuntu 上面直接裝
$ apm install git-log
然後再去atom開你想要看的git線的資料夾
再來去atom 打Ctrl-Shift-P (Windows or Linux)
就可以看到了



沒有留言:

張貼留言