git指令學習筆記

2021-09-29 21:42:23 字數 1615 閱讀 8689

菜鳥教程

git branch教程

本地與伺服器連線

git

繫結郵箱與賬戶

git config --global user.name "your name"

git config --global user.email [email protected]

1、檢視**的修改狀態

git status
2、檢視**的修改內容

git diff
3、暫存需要提交的**

git add git rm git add --all
4、提交已暫存的檔案

git commit

git commit -m

5、同步到伺服器

git push -u origin master
6、分支管理

git branch   列出所有分支

git branch (branchname) 建立分支

git checkout (branchname) 切換分支

git merge 合併分支

7、建立gitignore

touch .gitignore

全域性gitignore

git config --global core.excludesfile ~/.gitignore_global

簡單測試

$ mkdir gitdemo

$ cd gitdemo/

$ git init

initialized empty git repository...

$ touch readme

$ git add readme

$ git commit -m '第一次版本提交'

[master (root-commit) 3b58100] 第一次版本提交

1 file changed, 0 insertions(+), 0 deletions(-)

create mode 100644 readme

在本地倉庫新增乙個遠端倉庫,並把本地倉庫master分支跟蹤到遠端分支

git remote add origin ***xx

git push origin master

新建分支

step1,在本地新建分支

git branch newbranch

step2:把本地分支push到遠端

git push origin newbranch

step3:切換到該分支

git checkout newbranch

step4:檢視本地修改

git status

step5:新增本地修改

git add .

step6:commit修改

git commit -m '***x'

step7:push**

git push

Git 指令學習筆記

因為最近寫專案,用到了 git 與 github 在此記錄下學習 git 的指令筆記。環境 linux centos 工作區 working directory 版本庫 repository master分支 遠端庫的名字預設是origin 初始化乙個git庫 git init 關聯本地分支mast...

Git 學習筆記之指令

1.安裝git 2.配置使用者資訊 git config global user.name qinyuwei git config global user.email qinyuwei qq.com 3.差異分析工具 git config global merge.tool vimdiff 4.檢視...

Git學習筆記之 常見指令

工作區 暫存區 倉庫 說明git config global user.name 名稱 註冊使用者名稱 git config global user.email 郵箱 註冊使用者郵箱 git init 在當前資料夾建立git專案 git mv game.py wordgame.py 本地安全地修改檔...