工作中git常用命令

2021-10-23 11:29:22 字數 1177 閱讀 8763

git配置使用者名稱和郵。如果不同使用者、不同專案配置時可以不加global。

git config --global user.name "name"

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

直接在本地初始化倉庫。

# 進入專案目錄

git init

從遠端倉庫轉殖(ssh方式配置金鑰)

git clone  『倉庫位址』
# 新增當前所有修改或新增的檔案

git add .

git commit -m"提交資訊"
git merge  '其他分支'

# 變基合併

git rebase '其他分支'

# 拉取

git fetch

# 拉取合併

git pull

# 推送

git push

git cherry-pick 版本號
# 基於當前分支新建分支

git checkout -b '分支名稱'

git checkout '分支名稱'
git branch --set-upstream branch-name origin/branch-name
分配任務,建立開發分支

# 切換到發版分支

git checkout qa

git pull

git checkout -b dev-ctf-8888

寫完**

git add .

git commit '提交資訊'

合併**(有衝突解決衝突)

git ckeckout qa

git pull

git ckeckout dev-ctf-8888

git rebase qa

git push -f

提交請求合併(pr),結束。

git 工作中常用命令

1.刪除本地分支 git branch d branchname 2.將本地分支推到遠端倉庫,並在遠端倉庫建立新的分支 git push origin localbranch romotebranch 3.合併兩個分支 先切換到目標分支targetbranch,再進行merge操作 git chec...

git工作中常用命令

git config global user.name your name here git config global user.email your email here git config l 檢視你當前的配置 ssh keygen 預設設定就可以 cat ssh id rsa.pub 生成...

git 工作中常用命令

git init 初始化 git add 新增所有檔案 git status 檢視狀態 若果是第一次會提示你輸入你的 郵箱 和姓名 git commit m 這個版本修改過的一些描述 新增到他和遠端 倉庫 git log 檢視遠端常庫有幾個版本 git reflog 詳細檢視 git reset h...