Git 常用命令

2021-09-06 17:09:18 字數 1477 閱讀 6667

git 配置

git config --global user.name "yingjh"  --配置使用者名稱

git config --global user.email "[email protected]"  --配置郵箱

git config --list --檢視配置

git 倉庫

git init  --初始化版本庫

git add  檔名 --新增檔案到暫存區

git commit -m  "提交說明"  --整個倉庫提交到版本區

4.   git status --檢視倉庫狀態

git 工作流

git reset head bash_demo.txt 暫存區檔案回滾

git checkout -- bash_demo.txt 工作區檔案回滾

-- 版本區檔案回滾分兩步

1. git log  --獲取日誌 

獲取要回滾版本的提交編號

2. git reset --hard 29695809474f4d0f4258ab0a95d4311ef9602680 --將版本區和暫存區檔案回滾到提交編號對應的版本

4.-- 版本區檔案刪除步驟

1. git rm bash_demo.txt --刪除工作區檔案 

2. git commit  -m "delete bash demo"  --提交至版本區

git  將本地倉庫新增到遠端倉庫到github  

在github上建立倉庫

git remote add origin [email protected]

:yingjiahuan/clone_repo_demo.git     --關聯遠端倉庫

git push -u origin master -- 將本地的master分支推送到origin主機

git  轉殖倉庫 添將遠端倉庫轉殖到本地

git clone [email protected]:yingjiahuan/clone_repo_demo.git  --git clone ssh 將遠  程倉庫轉殖到本地當前目錄

git push --將本地的更改推送到遠端倉庫

git  標籤管理    --標籤可以用於版本管理,回滾版本等操作

git tag --檢視所有標籤

git tag name --建立標籤

git tag -a name  -m "comment" --指定提交資訊 

git tag -d name  --刪除標籤

git push origin name --標籤發布到遠端倉庫

git  分支管理   --同一倉庫中開發不同功能

git branch name --建立分支

git branch --檢視當前分支情況

git checkout name --切換工作分支

git merge name --將name分支內容合併到當前分支

git branch -d name --刪除分支

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...

git 常用命令

檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...

git常用命令

詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...