常用git bash命令

2022-08-02 08:48:09 字數 905 閱讀 5922

git init 

git remote add origin

"你的專案位址(剛才在碼雲建立的專案的位址)

"git pull origin master

#git pull origin master --allow-unrelated-histories

git rm filename

git branch v1.

0#建立本地分支

git push origin v1.

0#提交分支

git branch -a #檢視所有分支

git branch #檢視當前分支

git checkout -b v1.0 origin/v1.0

#切換分支

git checkout master

git branch -d v1.0

#刪除本地分支

git push origin --delete v1.0

#刪除遠端分支

git checkout -b v1.0 #等於 git branch v1.0 和 git checkout v1.0

切換分支到master

git checkout mater

3.將**更新到最新版本

git pull

4.在master分支上,將develop分支合併到master上面

git merge develop

如果不行,使用命令

git merge develop --allow-unrelated-histories

5.新增到快取

git add .

6.提交到本地分支

git commit -m '20190424'

Git bash常用命令

最近專案中使用到了git,所以記錄一下git中常用的命令。git使用的客戶端有git bash 還有烏龜tortoisegit git status檢視本地修改與伺服器的差異。git add 將這些差異檔案新增,這樣就可以提交了。git commit m 這裡是注釋 提交更改到伺服器。git che...

Git bash常用命令

checkout方式 xiaofeng 126 data projectname e htdocs projectname 本地增加 git add 本地提交方式 git commit m 這裡是注釋而且一定要寫 上傳本地到遠端倉庫 git push origin master 合併遠端倉庫到本地 ...

git bash常用的操作命令

在當前目錄新建乙個git 庫 git init 新增刪除檔案 新增指定檔案到暫存區 git add file1 file2 刪除工作區檔案,並將這次刪除放入暫存區 git rm file1 file2 改名檔案,並將這次改名放入暫存區 git mv file origin file renamed ...