cd d:進入d盤
git clone 遠端倉庫位址
mkdir 檔名 (建立檔案)
git help 檢視幫助130個命令
git config --list 檢視配置資訊
git commit 提交
git commit -m 「***」 (***提交**的備註)
git pull 從倉庫拉下改變**
git push 上傳**
git push origin *** (***為要提交**的分支名稱)
git status 檢視狀態
git branch 檢視分支情況
git branch -a 檢視全部分支
git branch dev 建立分支 git branch *** (***是你的分支名稱)
git checkout dev 切換分支
git merge dev 合併分支 必須回master分支上執行合併命令才有可以合併。
git init 初始化倉庫
git add .新增修改**到快取(注意最後的"."前面有個空格 .代表新增資料夾下所有檔案
.gitignore這個檔案裡面是設定不需要提交的到倉庫檔案。
Git命令集合
安裝完成git之後要配置一些基本的資訊 git config global user.name your name git config global user.email email example.com 其中的 your name 和 email example.com 都要換成你自己個人的資...
git命令集合
對所有本地倉庫的使用者資訊進行配置 git config global user.name name 對你的commit操作設定關聯的使用者名稱 git config global user.email email address 對你的commit操作設定關聯的郵箱位址 建立乙個新的倉庫或者從乙個...
git 標籤命令集合
git tag git tag v1.02.1含附註的標籤 建立乙個含附註型別的標籤非常簡單,用 a 譯註 取 annotated 的首字母 git tag a v1.4 m my version 1.0 而 m 選項則指定了對應的標籤說明,git 會將此說明一同儲存在標籤物件中。如果沒有給出該選項...