GIT操作學習

2021-07-31 12:42:58 字數 1540 閱讀 6825

[git]基本命令

2、配置git使用者名稱[git config --global user.name "ada"][git config --global user.email "[email protected]"]

3、建立目錄[makdir leargit][cd][cd ..][pwd]

4、建立並初始化git庫,進入目錄後再執行[git init]

5、新增[git add ***.file] 上傳[git commit -m 「描述說明」]

6、檔案操作[git status][git diff ***.file][git log --pretty=oneline][git reflog]

7、檔案回退[git reset --hard head^ ***.file]

8、檔案獲取[git checkout -- ***.file]

9、檔案刪除[git rm ***.file][git commit -m"delect file"]

10、檔案檢視 [vi ***.file],退出檔案[:q]

[git]分支操作

1、建立並切換分支[git checkout -b branch-name]==[git branch branch-name]+[git checkout branch-name]

2、檢視當前有哪些分支 [git branch]

3、[git checkout branch-name][git checkout master],是操作最後的乙個檔案

4、合併當前操作的檔案 branch到master [git merge branch-name][git merge --no-ff -m "comment" branch-name]

5、刪除分支[git branch -d branch-name] 強行刪除分支[git branch -d branch-name]

[git]遠端庫的操作

1、建立key[ssh-keygen -t rsa -c"[email protected]"]

2、建立並關聯[git remote add origin [email protected]:aiwenada/***.git]

3、遠端推送[git push -u origin master],後續可用[git push origin master]

4、遠端轉殖[git clone [email protected]:aiwenada/***.git]

5、獲取遠端庫分支[git checkout -b branch-name origin/branch-name]

6、本地分支與遠端分支關聯[git branch --set-upstream branch-name origin/brach-name]

7、抓取遠端[git pull]

8、獲取遠端倉庫的詳細資訊[git remote -v]

[git]標籤操作

1、獲取標籤[git tag]

2、建立標籤[git tag ] 預設打在最後一次commit

3、檢視標籤[git show ]

github.com操作

1、fork獲取開源**到自己的github

git 操作學習

1.window本機電腦安裝git 2.配置環境變數 安裝到d software git 目錄把bin目錄路徑完整加入path變 3.配置git的config git config global user.email you example.com git config global user.na...

git操作學習記錄

在你要提交的工程的根目錄,執行 git init 生成乙個初始檔案 echo 1 readme.txt 再git add.git commit m 初始化 git add git status 檢視當前的git狀態 git commit m 上傳第乙個版本 git log 檢視git日誌 上傳工程到...

git基本操作學習

為了實現部落格文章的及時更新,需要多端實現hexo同步,在網上查詢的大部分文章都是基於github,建立分支,實現此功能的,因此便簡單學習一下git的基本操作,在此做下記錄。1.git status git branch 2.git add git add all git add a 3.git c...