Git指令

Git指令

經常使用指令

添加改動到本地倉庫

git add .

提交更新的內容標記

git commit -m '本次記錄的內容簡介'

拉取(括號裏爲示例)

git  pull  (origin master)

提交

git  push

新建分支

git checkout -b <branch_name>

刪除分支

git branch -d <branch_name>

忽略某文件

git update-index --assume-unchanged /path/to/file

取消忽略

git update-index --no-assume-unchanged /path/to/file

查看分支

git branch -a //遠程git

git branch //本地code

切換分支

git checkout -b ~ //切到分支
git checkout -b ~ origin ~ //切到從遠程拉下來的新分支it

相關文章
相關標籤/搜索