Git常用指令

2021-09-26 03:40:56 字數 626 閱讀 3187

檢視遠端分支詳細資訊

git remote -v

git修改遠端倉庫位址

git remote rm origin

git remote add origin [url]

檢視commit編號日誌

git reflog
大概是這麼個東西
d:\projects\fronted-master>git reflog

d6391fe (head -> master) head@: reset: moving to d6391fe

d6391fe (head -> master) head@: commit: update

384dc55 head@: commit: update by liz

f901d7d head@: commit: update reset password

26c32bc head@: commit (initial): first commit

回退版本,後面是版本編號,就是上面reflog出來的結果

git reset --hard 384dc55

Git 常用指令

首先需要建立乙個repo,這是cd到資料夾底下,然後init。git init 在檔案系統裡面的檔案如果不新增到git的repo裡面,不會自動被git辨識,需要手動新增,這也是初始化repo是必須要做的事。git add documentation txt git add git sh 刪除檔案,分...

git常用指令

git 常用命令 git init here 建立本地倉庫 repository 將會在資料夾下建立乙個 git 資料夾,git 資料夾裡儲存了所有的版本資訊 標記等內容 git remote add origin git github.com winter1991 helloworld.git 把...

git常用指令

git config global user.name robbin git config global user.email fankai gmail.com git config global color.ui true git config global alias.co checkout g...