git 基本命令

2022-08-12 00:03:12 字數 938 閱讀 4290

git status 檢視狀態

git add . 把所以檔案提交到暫存區

git commit -m "add files"  把所有檔案提交到版本區

rm 1.txt 刪除檔案

git reset --hard 雜湊值   本地庫恢復

set nu 新增行號

git diff 《檔案》 檔案與暫存區比較

git diff head/雜湊 《檔名》檔案與本地庫比較 head為當前的指標

git branch -v 檢視分支

git branch 《分支名》 建立分支

git branch    檢視本地所有分支

git branch -r   檢視遠端所有分支

git branch -a   檢視本地和遠端的所有分支

git branch -d 刪除本地分支

git branch -m 重新命名分支

git checkout 《分支名》 切換分支

git merge 《分支名》 把當前分支更新為指定的分支

mkdir 新建資料夾

git remote -v 檢視別名

git remote add 給url新增別名

git remote set-url 修改url

git push master  把內容推送到遠端倉庫

git clone 轉殖遠端倉庫

git fetch

拉取遠端倉庫到本地(並不更改本地內容)

git checkout /

切換到遠端分支

cat 檢視剛剛拉取的內容

git pull

拉取遠端倉庫內容並更新當前分支

衝突狀態提交到本地庫不需要加上檔名

git 基本命令

man git man git commit man git pull man git merge git config global user.name yourname git config global user.email yourname example.com cd home git m...

Git 基本命令

git config global user.name xx git config global user.email x com 1.建立專案資料夾 mkdir myproject 2.進入專案資料夾 cd myproject 3.初始化專案 git init 4.建立 readme.md tou...

Git 基本命令

說明 以下所有操作命令 均在 git bash 下執行,即命令為linux風格 檔案 以 txt 為例 其中,建立某乙個倉庫,在某一具體路徑下 執行 git init即可 幫助命令 git help 建立 respository git init 刪除 respository rm rf git 建...