git 菜鸟入门
1. 推薦的 git 倉庫(注冊帳號并登錄):
https://github.com/
https://git.oschina.net/
2. 創建倉庫
??? ?
里面的地址為 git 倉庫的地址 ,以 https 為例:https://github.com/xxx/xxx.git
3. 下載 git 并安裝 ??http://git-scm.com/download/?(window版本),打開 Git bash
我這版本稍微有點老,很久沒更新了 ...
4. 為倉庫選擇一個路徑
5. 首次使用需要配置一下個人信息
6. 將之前 github 新建的倉庫 clone 下來
7. 將需要上傳的倉庫代碼 copy 到克隆下來的文件夾下
$ git remote -v
# origin https://github.com/xxx/xxx.git(fetch)
# origin https://github.com/xxx/xxx.git(push)
$ git push origin master
# 將代碼上傳至origin地址的倉庫的master分支,master是默認分支,倉庫創建時就有
# 輸入帳號密碼,完成之后,看看是否已提示成功,代碼已經在遠端倉庫了
轉載于:https://www.cnblogs.com/webmagic/p/4962632.html
總結
- 上一篇: 引用类型(下)
- 下一篇: 《Programming WPF》翻译