Git基本命令

2022-05-09 09:15:10 字數 792 閱讀 9328

#在當前目錄新建乙個**庫

git-init

#轉殖乙個專案和它的整個**歷史(版本資訊)

git-clone [url]

#檢視所有檔案狀態

git status

#新增所有檔案到暫存區

git add .

#提交暫存區中的內容到本地倉庫 -m 提交資訊

git commit -m "訊息內容"

#忽略檔案

*.txt #忽略所有.txt結尾的檔案,這樣上出的時候不會被選中

!lib.txt #lib.txt檔案除外

/temp #僅忽略專案根目錄下的todo檔案,不包括其他專案temp

build/ #會忽略 build/目錄下的所有檔案

doc/*.txt #會忽略doc/notes.txt 但不包括doc/server/arch.txt

#新建乙個分支

git branch [branch-name]

#新建乙個分支,並切換到該分支

git checkout -b [branch]

#合併指定分支到當前分支

git merge [branch]

#刪除分支

git branch -d [branch-name]

#刪除遠端分支

git push origin --delete [branch-name]

git branch -dr [remote/branch]

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 建...