git的基本命令

2022-08-15 15:33:18 字數 852 閱讀 3707

1 git init (--bare) 在當前目錄新建乙個git**庫

2 git clone ssh://

3 git add 1

.txt 或者 git add . 新增檔案到暫存區

4 git commit -am '注釋'

提交暫存區到倉庫區

5 git rm 1

.txt 刪除工作區檔案放入暫存區

6 git mv 1.txt new

.txt 修改檔名,放入暫存區

7git log 檢視當前分支的版本歷史

8git status 顯示有變更的檔案

9 git log --stat 顯示commit歷史,以及每次commit發生變更的檔案

10git push (origin master) 上傳本地指定分支到遠端倉庫

1112 git reset --hard (版本號) 更新(重置)所有修改,更新到最後一次修改

13git branch name 建立分支 如:git branch daj

14git branch 檢視分支

15 git branch --all 檢視所有分支

16git checkout name 切換分支

17git push origin name 提交資料

18 git checkout --file 撤銷修改

19 git checkout -b name 建立+切換分支

20git merge name 合併某分支到當前分支

21 git branch -d name 刪除本地分支

22 git push origin :name 刪除遠端分支

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