git使用步驟

2022-06-05 16:42:12 字數 490 閱讀 6515

1報名出處:

2.建立專案資料夾:mkdir test

3.建立版本庫:git init

4.命令操作:

提交版本:git commit -m "備註" a.php

修改:git commit -am "備註" (a代表修改所有的檔案)

新增所有的改變:git add -a

刪除檔案:git rm a.php

轉殖 (ssh方式)

拉取遠端倉庫**(https方式)

新增遠端版本庫到本地(https方式)

提交到遠端版本庫

git push origin master

忽略:在根目錄生成 .gitignore 

然後在裡面加上忽略的檔案或目錄:如 /runtime a.txt等

更新線上最新版本:

git pull origin master

提交最新版本:

git push origin master 

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

git使用步驟

首頁要在github上建立乙個使用者名稱 1.git init 2.在github.com 建立乙個倉庫 右上角 new respository 書寫倉庫名稱和描述 提交 3.把本地 推到遠端倉庫git add git commit m 寫一句描述 git remote add origin git...