Git常用命令

2021-08-30 10:48:25 字數 1574 閱讀 7970

1.當下git伺服器的檔案

$ git clone
2.新增到倉庫

$ git add --all
3.提交到git倉庫

$ git commit -m "initial commit"
4.push到git倉庫

$ git push -u origin master
5.init 方法是初始化指定目錄倉庫

新增到倉庫

$ $ git add a

# 或者上面的

$ git add --all

檢視狀態

$ git status
提交說明資訊

$ git commit -a -m"******" #******是提交說明資訊,-a表示忽略不修改檔案,不是每個都add
提交到git伺服器

$ git push
$ git pull
指定倉庫檔案拉取url:

$ git pull
刪除使用rm

$ git rm file # 刪除指定檔案
建立乙個分支是使用branch

$ git branch yy # 建立乙個test分支
刪除分支-d

$ git branch -d yy
branch命令不會將我們帶入分支,只是建立乙個新分支。所以我們使用checkout命令來更改分支

$ git checkout yy
第乙個分支,或主分支,被稱為"master"

$ git checkout master
如果想將更改提交到主分支,則需切換回master分支,然後使用合併

git checkout master

git merge yy

$ git log
簡潔版檢視使用--oneline

$ git log --oneline
使用--graph選項,檢視歷史中什麼時候出現了分支、合併

$ git log --oneline --graph
使用』–reverse』引數來逆向顯示所有日誌

$ git log --reverse --oneline
查詢指定使用者的提交日誌可以使用命令:git log --author

$ git log --author =linus --oneline -5

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...

git 常用命令

檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...

git常用命令

詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...