git使用小結

2021-07-02 03:04:56 字數 696 閱讀 5531

下面是乙個將本地工程上傳到git伺服器的過程,前提是在git伺服器上已經建好倉庫(repository)

1.首先是初始化命令:在本地目錄中使用git init,會將當前目錄初始化成為git可用目錄

2.git add .將當前目錄所有檔案加入索引

3.git commit -m "***"提交檔案

4.新增遠端倉庫git remote add  origin  url,把origin設定成為遠端倉庫的別名,url是你的遠端倉庫位址

5.git push --set-upstream origin  master:base.將本地對應分支關聯到遠端倉庫的某個分支(遠端倉庫沒有此分支時,建立此分支),以後使用git push可以直接推送

其中origin是遠端倉庫的名字,master:base是乙個src:des結構,master是本地分支,base是遠端倉庫origin的分支,這個命令將兩個分支關聯

6.git push origin master

origin指定了你要push到哪個remote

master其實是乙個「refspec」,正常的「refspec」的形式為」+:」,冒號前表示local branch的名字,冒號後表示remote repository下 branch的名     字。注意,如果你省略了,git就認為你想push到remote repository下和local branch相同名字的branch。

git使用小結

git使用小結 git 建立倉庫,初始化 git命令簡化 git status 簡化為 git st git config global alias.st status git多人協作 這裡假設有兩個人user1和user2 1 首先在一台主伺服器建立乙個遠端倉庫 2 user1和user2分別從遠...

Git使用小結

git提交工程到github 1 github建立repository 2 配置git.exe 路徑和github的賬號和密碼 3 開啟git bash 找到自己工程目錄 4 輸入命令進行關聯 git remote add origin http git 位址鏈結 5 右鍵工程目錄git add g...

Git使用小結

建立新倉庫 git init 檢出倉庫 git clone localpath git clone 遠端倉庫位址 git 中的三個工作流 working dir 快取區 index commit head 最後,將改動由本地倉庫的head提交到git遠端倉庫中 git push origin mas...