Git基本操作

2022-06-13 07:57:10 字數 1649 閱讀 8213

檢視狀態:

git status

檢視本地分支:

git branch

檢視遠端建立跟蹤的分支:

git branch -r

檢視本地分支和遠端建立跟蹤的分支:

git branch -a

把本地所有檔案新增到待提交,並建立跟蹤:

git add .

把本地隱藏檔案以外所有檔案新增到待提交,並建立跟蹤:

git add *

把待提交的檔案提交到本地倉庫:

git commit -am  "新增或修改"

git remote -v

刪除本地倉庫連線:

git remote rm origin

將本地倉庫與遠端倉庫建立連線:

更新遠端分支列表:

git remote update origin --prune

推送到遠端main分支:

git push origin main

推送到遠端master分支:

git push origin master

建立a_branch分支:

git branch a_branch

不會自動切換到a_branch分支上去

切換到a_branch分支:

git checkout a_branch

建立並切換到a_branch分支:

git checkout -b a_branch

如果a_branch分支存在則報錯

把本地a_branch分支推送到遠端a_branch分支:

git push origin a_branch

要求當前所處分支為a_branch分支

合併本地a_branch分支到本地a_branch_02分支:

git merge a_branch

要求當前所處分支為a_branch_02分支

合併本地a_branch分支到本地main分支:

git merge a_branch

要求當前所處分支為main分支

合併本地a_branch分支到本地master分支:

git merge a_branch

要求當前所處分支為master分支

刪除本地a_branch分支:

git branch -d a_branch

刪除遠端a_branch分支:

git push origin :a_branch

git push origin --delete a_branch

git reset --hard "head^"

檢視提交記錄:

git reflog

撤銷本地倉庫回退:

git reset --hard head@

Git基本操作

1.初始化倉庫 git init 2.配置作者資訊 git config global user.email youremail corp.com git config global user.name yourname 3.新增檔案到暫存區 git add git add 新增所有檔案到暫存區 4...

git基本操作

1.先建乙個資料夾 mikdir gittest 這時就會有乙個gittest資料夾,cd gittest 進入這個資料夾 ls一下,就會看到gittest下沒有東西 2.生成乙個git git init cat git 顯示一下所有git 3.建乙個檔案 touch readme.md 這時git...

Git基本操作

21 nov,錦州 同生活中的許多偉大事件一樣,git 誕生於乙個極富紛爭大舉創新的年代。linux 核心開源專案有著為數眾廣的參與者。絕大多數的 linux 核心維護工作都花在了提交補丁和儲存歸檔的繁瑣事務上 1991 2002年間 到 2002 年,整個專案組開始啟用分布式版本控制系統 bitk...