GIT提交時的基本命令

2021-10-01 09:32:59 字數 1289 閱讀 7546

命令注釋

獲取個人密匙

git config --global user.name 「使用者名稱」

git config --global user.name 「郵箱位址」

git config --global user.name 「郵箱位址」

拉取**

git clone 對應ssh

拉取資源

git checkout -b 分支號

新建分支

git branch -d 分支號

刪除分支

提交**

git status

檢視修改的檔案

git diff

檢視修改內容

git add .

把修改後的內容從本地拉到暫存區

git commit

將暫存區裡的改動給提交到本地的版本庫

git push origin 分支號

將從本地版本庫把修改的內容推送到伺服器上面

步驟命令注釋1

git fetch origin 衝突分支號:分支號2

從遠端分支拉取資源

2git checkout 主分支號

切換到當前的主分支

3git pull origin 主分支號

將當前主分支的資源更新

4git checkout 分支號2

切換到存放遠端衝突分支資源的當前分支

5git checkout -b 分支號3

建立乙個新的分支,防止合併失敗

6git merge --no-ff master

將主分支與當前存放衝突分支資源的分支合併

7解決衝突

8git add .

9git commit

10git push origin 分支號3

強制提交

git push origin 分支號 --force

撤回提交

2.1 不刪除工作空間改動**,撤銷commit,並且撤銷git add .

git reset --mixed head^ xx.py

2.2 不刪除工作空間改動**,撤銷commit,不撤銷git add .

git reset --soft head^

2.3 刪除工作空間改動**,撤銷commit,撤銷git add

git reset --hard head^

拉去遠端分支到本地

git fetch origin 遠端分支號:新建分支號

git 基本命令

man git man git commit man git pull man git merge git config global user.name yourname git config global user.email yourname example.com cd home git m...

Git 基本命令

git config global user.name xx git config global user.email x com 1.建立專案資料夾 mkdir myproject 2.進入專案資料夾 cd myproject 3.初始化專案 git init 4.建立 readme.md tou...

Git 基本命令

說明 以下所有操作命令 均在 git bash 下執行,即命令為linux風格 檔案 以 txt 為例 其中,建立某乙個倉庫,在某一具體路徑下 執行 git init即可 幫助命令 git help 建立 respository git init 刪除 respository rm rf git 建...