需要熟記的git命令

2022-03-25 08:27:45 字數 1695 閱讀 1949

需要熟記的github常用命令 

總結一下ubuntu下github常用的命令,設定部分跳過,假設repository的名字叫hello-world: 1

.建立乙個新的repository:

先在github上建立並寫好相關名字,描述。

$cd ~/hello-world //

到hello-world目錄

$git init

//初始化

$git add .

//把所有檔案加入到索引(不想把所有檔案加入,可以用gitignore或add 具體檔案)

$git commit

//提交到本地倉庫,然後會填寫更新日誌( -m 「更新日誌」也可)

$git remote add origin [email protected]:wadeleng/hello-world.git //

增加到remote

$git push origin master

//push到github上

2.更新專案(新加了檔案):

$cd ~/hello-world

$git add .

//這樣可以自動判斷新加了哪些檔案,或者手動加入檔案名字

$git commit

//提交到本地倉庫

$git push origin master

//不是新建立的,不用再add 到remote上了

3.更新專案(沒新加檔案,只有刪除或者修改檔案):

$cd ~/hello-world

$git commit -a //

記錄刪除或修改了哪些檔案

$git push origin master

//提交到github

4.忽略一些檔案,比如*.o等:

$cd ~/hello-world

$vim .gitignore

//把檔案型別加入到.gitignore中,儲存

然後就可以git add . 能自動過濾這種檔案 5

.clone**到本地:

$git clone [email protected]:wadeleng/hello-world.git

假如本地已經存在了**,而倉庫裡有更新,把更改的合併到本地的專案:

$git fetch origin

//獲取遠端更新

$git merge origin/master //

把更新的內容合併到本地分支

6.撤銷

$git reset 7

.刪除

$git

rm * //

不是用rm //

——————————常見錯誤———————————–

1.$ git remote add origin [email protected]:wadeleng/hello-world.git

解決辦法:$ git remote

rmorigin

然後在執行:$ git remote add origin [email protected]:wadeleng/hello-world.git 就不會報錯誤了 2

. $ git push origin master

解決辦法:$ git pull origin master

//先把遠端伺服器github上面的檔案拉先來,再push 上去。 //

—————————————

git 需要了解的幾個命令

git initgit add git commit m this is 注釋 ssh keygen t rsa c youremail example.com git remote add origingit checkout b developgit push origin developgit...

工作經常需要用到的git命令

我們開發人員比較多,需要保持develop分支上時直線提交,git remote update 檢查遠端是否有更新,一般會列印出遠端更新的記錄 git rebase origin develop 或其他分支 拉取主分支上最新的 到本地 git rebase continue 到遇到衝突時,解決衝突,...

git 命令 git命令入門

1.本地使用 首次使用,需要進行全域性配置 git config global user.name 使用者名稱 git config global user.email 郵箱位址 git常用命令 git倉庫初始化 git init 新增到快取區 git add 檔名 新增當前目錄到快取區 git a...