git基本命令

2021-09-27 07:59:42 字數 1459 閱讀 5194

*************************= 版本管理員操作***********************************==

第一步: 建立資料倉儲

git init --bare shared.git
*************************== 開發人員1操作***********************************==

第二步:複製倉庫到本地

git clone /f/software/repository/git/shared.git/

.(注意有個點,表明當前目錄)

第三步:設定個人資訊
git config user.name "user1"

git config user.email "[email protected]"

第四步:忽略無需版本控制的文件 跳過
echo "*.txt"

>

.gitignore

第五步:新建乙個檔案
echo "user1 add content"

> index.jsp

第六步:提交檔案
git add index.jsp

git commit -m "user1 add the file"

第七步:把自己的倉庫提交到公共伺服器
git push origin master
******************************=== 開發人員2操作******************************=

第八步:複製倉庫到本地

git clone /f/software/repository/git/shared.git/

.

第九步:設定個人資訊
git config user.name "user2"

git config user.email "[email protected]"

第十步:忽略無需版本控制的文件
echo "*.txt"

>

.gitignore

第十一步:新建乙個檔案
echo "user2 add content"

>> index.jsp

第十二步:提交檔案
git add index.jsp

git commit -m "user2 add the file!"

第十三步:把自己的倉庫提交到公共伺服器
git push origin master
*************************=== 開發人員1操作***********************************=

git pull

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 建...