git 倉庫搭建,clone和push

2021-07-27 02:51:08 字數 632 閱讀 8763

倉庫搭建

**push:

$ git remote add origin git@

127.0

.0.1

:/home/git/

res.git

$ git push origin master 

clone:

$ git clone [email protected]:/home/git/res.git

參考:push 開發分支:

4、推送本地分支local_branch到遠端分支 remote_branch並建立關聯關係

a.遠端已有remote_branch分支並且已經關聯本地分支local_branch且本地已經切換到local_branch

git push

b.遠端已有remote_branch分支但未關聯本地分支local_branch且本地已經切換到local_branch

git push -u origin/remote_branch

c.遠端沒有有remote_branch分支並,本地已經切換到local_branch

git push origin local_branch:remote_branch

參考:

git倉庫部分檔案clone

首先建立和git倉庫中主目錄相同的資料夾 例如 主目錄為 main work,在本地建立乙個main work資料夾 進入main work資料夾 cd main work 執行初始化命令 git init 查詢遠端分支,此處應為空 git remote v 新增遠端位址 git remote ad...

搭建Git遠端倉庫

遠端倉庫通常只是乙個 裸倉庫 bare repository 即乙個沒有當前工作目錄的倉庫。因為該倉庫只是乙個合作媒介,所以不需要從硬碟上取出最新版本的快照 倉庫裡存放的僅僅是 git 的資料。簡單地說,裸倉庫就是你工作目錄中.git 子目錄內的內容。yum install y git root l...

git 搭建遠端倉庫

1.使用git建立遠端倉庫時,一定要建立裸倉庫,即git init bare。否則,使用push向遠端倉庫提交更新時,會報錯。2.由於遠端倉庫一般都是裸倉庫,所以是看不到源 的。所以,要把 部署到生產環境,還需要接下來的操作 vim post receive bin sh git work tree...