常用的git指令

2021-10-10 02:42:46 字數 1115 閱讀 5178

拉取雲端**庫資料

git clone [git**庫位址]
新增**到快取區

git add .
提交**到本地**庫

git commit -m "[備註資訊]"
-m 表示新增 備註資訊

將**提交到遠端分支

git push origin  [分支名]
切換分支

git checkout master
建立並切換到新的分支

git checkout -b [分支名]
檢視與切換分支

git branch       # 檢視 本地 分支

git branch -r # 檢視 遠端 分支

git branch -a # 檢視 所有 分支 ,在這之前最好執行git fetch origin 獲取下遠端分支

git checkout -b [本地別名] origin/[遠端分支名] # 切換遠端分支

合併分支

git  check [分支名]   # 合併前先切換到即將併入的分支

git merge [分支名] # 合併分支

打標籤

檢視所有標籤                git tab 

本地打標籤 git tab [tab_name]

在commit上打標籤 git tab [tab_name]

附註標籤 git tag -a -m 推送乙個標籤到遠端 git push origin [tab_name]

推送全部未推送的標籤到遠端 git push origin --tags

刪除本地標籤 git tag -d // 本地tag刪除了,在執行該句,刪除遠端tag git push origin :refs/tags/

git的常用指令

git安裝 1,初始化 git倉儲 倉庫 這個倉庫會存放,git對我們專案 進行備份的檔案 在專案目錄右鍵開啟 git bash 命令 git init 2,自報家門 就是在 git中設定當前使用的使用者是誰 每一次備份都會把當前備份者的資訊儲存起來 命令 配置使用者名稱 git config gl...

git常用的指令

最近專案從svn遷入到git,常用的git指令需要用到 git config global user.name user name git config global user.email email email.com 初始化 git init 加倉庫 git remote add origin ...

Git的常用指令

建立版本庫 mkdir learngit cd learngit pwd users michael learngit pwd命令用於顯示當前目錄。在我的mac上,這個倉庫位於 users michael learngit 初始化乙個git倉庫 git init initialized empty ...