Github筆記
Github New Repository
- 申請github帳號
- create a empty public repository
在欲上傳的folder執行以下指令
12345git initgit add README.mdgit commit -m "first commit"git remote add origin https://github.com/cwza/gms.gitgit push -u origin masterfetch remote branch and checkout it
12git fetch <remote> <rbranch>:<lbranch>git checkout <lbranch>
Update Github forked repository
|
|