git 基礎命令

2022-04-26 05:26:05 字數 1006 閱讀 2220

1、建立本地分支 local_branch

git branch local_branch

2、建立本地分支local_branch 並切換到local_branch分支

git checkout -b local_branch

3、切換到分支local_branch

git checkout local_branch

4、推送本地分支local_branch到遠端分支 remote_branch並建立關聯關係

a.遠端已有remote_branch分支並且已經關聯本地分支local_branch且本地已經切換到local_branch

git push

b.遠端已有remote_branch分支但未關聯本地分支local_branch且本地已經切換到local_branch

git push -u origin/remote_branch

c.遠端沒有有remote_branch分支並,本地已經切換到local_branch

git push origin local_branch:remote_branch

5、刪除本地分支local_branch

git branch -d local_branch

6、刪除遠端分支remote_branch

git push origin  :remote_branch

git branch -m | -m oldbranch newbranch 重新命名分支,如果newbranch名字分支已經存在,則需要使用-m強制重新命名,否則,使用-m進行重新命名。

git branch -d | -d branchname 刪除branchname分支

git branch -d -r branchname 刪除遠端branchname分支

更快的方法直接:git push -d origin branch-name

7、檢視本地分支

git branch

8、檢視遠端和本地分支

git branch -a

GIT 基礎 基礎命令

環境 centos7 yum install git這裡裡有個隱藏的資料夾 git 為git倉庫的配置資料夾,不可隨意修改 cd www git git init ls a git這裡和我們平時使用的git客戶端中設定使用者名稱和郵箱一樣的作用 git config global user.name...

Git 基礎命令

一 建立 git init 初始化乙個git倉庫 git add 把檔案新增到倉庫 git commit 把檔案提交到倉庫 二 顯示 git status 檢視倉庫當前的狀態 git log 檢視提交日誌 git reflog 檢視每次命令的記錄 三 管理 git reset hard head 把...

Git基礎命令

git現在廣泛應用在開發 管理中,想當年svn也是幹過這事,當然現在也還有人用,畢竟還是有情懷的嘛。對於測試,現在用git的還少,相對於檔案管理,svn還是會方便很多。當然,用習慣了git也方便,但是我第一次開始用吧,覺得特麻煩,把基礎命令總結下,免得幾日不用忘記。1.建立專案 不管是gitlab ...