git的初步使用
阿新 • • 發佈:2018-03-14
xxx use hub conf 建倉 git push ext tex commit
下載與設置
1、註冊github:https://github.com
2、創建倉庫(一般為一個項目名稱),具體用法:https://guides.github.com/activities/hello-world/
3、下載git bash(用戶從github上拉文件與上傳文件)https://gitforwindows.org/,安裝完畢後設置:
git config --global user.name "用戶名"
git config --global user.email "郵箱"
上傳文件至github方法:
cd C:\skybe
git init
git add .
git commit -m "skybe提交文件" --冒號中信息為備註信息
git remote add origin https://github.com/xxxxxxx (藍色部分為github地址)
git push -u origin master
從github上下載文件至本地方法:
1、進入一個文件夾(想將文件下載處)
1、右擊鼠標點擊 Git Bash Here
2、輸入命令git clone https://github.com/xxxxxxx (藍色部分為github地址)
git的初步使用