git建立與使用步驟

2021-07-05 01:24:26 字數 715 閱讀 5924

系統設定:

$ git config --global user.name

"your name"

$ git config --global user.email [email protected]

進入建立的新的應用程式的根目錄,初始化乙個新倉庫:

$ git init
新增檔案

$ git add .
檢視暫存區域有哪些檔案

$ git status
告訴git需要儲存add的檔案

$ git commit -m"reason"
檢視歷史提交資訊

$ git log
將程式推到github上:

$ git push -u origin master

建立分支:$ git branch mybranch

切換分支:$ git checkout mybranch

建立並切換分支:

$ git checkout -b mybranch
列出本地所有分支

$ git branch

Git 建立分支,提交使用步驟

1.建立新資料夾 2.該資料夾下面開啟git 命令列 3.git init 初始化 4.git remote add origin 遠端倉庫鏈結 5.遠端開發一般要建立在遠端建立自己的分支 6.git fetch origin 分支名 不用這步.7.本地建立分支與遠端分支對應 並且切換到該分支下面 ...

git使用步驟

git 使用步驟 1 建分支 project team switch to new branch 2 提交分支 注意 提交分支前必須先pull project team pull 1 project team commit commit and push 2 project team remote ...

git 使用步驟

1 在網頁git上覆制位址,git clone專案位址,把檔案拉到本地。2 git branch fix usb bug 建立乙個fix usb bug的分支,分支的名字必須有意義.3 git checkout fix usb bug 切換到fix usb bug分支,專案開發時在這個分支上。4 開...