git實用命令

2022-03-02 23:25:08 字數 894 閱讀 4762

1.git clone 

從遠端的git版本庫轉殖**,也可以理解成檢出**,可以在末尾指定新的名字

eg. git 

clone 

git: 

some_project

2.git remote -v 

檢視遠端倉庫

3.git remote rm [name] 

刪除遠端倉庫

4.git remote set-url --push [name] [newurl] 修改遠端倉庫

5.git pull [remotename] [localbranchname] 

拉取遠端倉庫

eg. git pull origin master

6.git push [remotename] [localbranchname] 

推送遠端倉庫

eg. git push origin master

7.git add

git add test.txt 

#注意,要gitignore一些特殊檔案,然後每一》次提交前git

status,確認提交的每乙個檔案

git add - a

git add *.c 

#用萬用字元的方式跟蹤檔案

8.git commit -m "msg"

9.git config

git config --global user.name "myname" 

#設定使用者名稱

git config --global user.email "myemail" 

#設定郵箱

git config --global core.editor "myeditor" 

#設定編輯器

git config --list 

git 實用命令

1.比較當前分支與另一分支的指定檔案差異 git difftool 分支名 檔名注 使用difftool最好配置好視覺化的比較工具,本人常用beyondcompare 2.一旦遠端主機的版本庫有了更新,需要將這些更新取回本地,這時就要用到git fetch命令 git fetch 遠端主機上面命令將...

Git實用命令

一 將遠端分支更換為自己的fork庫git remote v 檢視遠端origin倉庫 git remote remove origin 刪除遠端倉庫 git remote add origin http 新增自己的fork庫二 本地分支合併到遠端指定分支git remote v 檢視遠端origi...

git實用命令

1 初始化乙個git倉庫,使用git init命令。這個git倉庫是乙個空的倉庫。2 或者可以使用git clone git專案的url 這個命令來從遠端倉庫轉殖乙份專案,到本地倉庫中。3 向倉庫中新增乙個新的檔案 或者是修改了某乙個檔案,分兩步 4 要隨時掌握工作區的狀態,使用git status...