git基本命令

2021-08-20 05:47:25 字數 713 閱讀 4299

最近再寫一些專案上傳到github,所以要用到git命令。

本地需要先安裝git客戶端,然後指定乙個git位址為本地倉庫。

然後右鍵git bash here開啟git命令介面。

首先服務端需要建立乙個專案以便clone到本地,再將本地eclipse,idea的專案複製到這個倉庫。

demo是我這個專案的乙個分支。

切換master和分支用:

git checkout  demo(切換分支)

接下來就是上傳等一系列操作,就不具體列出來。

git add .  (將目錄中所有加入快取)

git status (檢視當前git中**狀態)

git pull (一般需要先將原來專案拉下來,多個人操作乙個專案)

git stash (隱藏衝突**)

git pull (隱藏衝突後需要在次將專案拉取)

git stash pop 

git commit -m "注釋"

git push

git 基本命令

man git man git commit man git pull man git merge git config global user.name yourname git config global user.email yourname example.com cd home git m...

Git 基本命令

git config global user.name xx git config global user.email x com 1.建立專案資料夾 mkdir myproject 2.進入專案資料夾 cd myproject 3.初始化專案 git init 4.建立 readme.md tou...

Git 基本命令

說明 以下所有操作命令 均在 git bash 下執行,即命令為linux風格 檔案 以 txt 為例 其中,建立某乙個倉庫,在某一具體路徑下 執行 git init即可 幫助命令 git help 建立 respository git init 刪除 respository rm rf git 建...