初始化一個本地GIT倉儲
阿新 • • 發佈:2022-04-29
簡單總結下
// 定位到倉儲資料夾目錄
$ cd /dir
// 初始化本地倉儲
$ git init
```
新增本地GIT忽略清單檔案.gitignore ``` // 新增OS X中系統檔案.DS_Store到忽略清單,這將忽略專案任意目錄下的.DS_Store檔案或是資料夾
$ echo .DS_Store >> .gitignore
```
檢視本地倉儲的變更狀態 ```
$ git status
```
新增本地暫存(託管)檔案 ``` // 新增指定檔名的檔案
$ git add README.md
// 新增萬用字元匹配的檔案
$ git add *.md
// 新增所有未託管的檔案(忽略.gitignore清單中的列表)
$ git add --all
```
提交被託管的檔案變化到本地倉儲 ```
$ git commit -m 'Initial commit(change log)'
```
為倉儲新增遠端(伺服器端)地址
``` // 新增一個遠端地址並起了一個別名叫origin
$ git remote add origin https://github.com/Micua/Git.git
// 檢視現有的遠端列表
$ git remote -v
```
將本地倉儲的提交記錄推送到遠端的master分支 ```
$ git push -u origin master
```
拉取遠端master分支的更新記錄到本地 ```
$ git pull origin master
``` https://git.oschina.net/wuyuchao/text.git