git上傳本地專案

2021-08-02 20:57:28 字數 603 閱讀 8878

使用此選項建立的專案,多數情況是使用者已經在本地有了乙個專案,想把此專案變成使用git管理。

$ 進入此專案所在資料夾

$ git init

$ git add .

$ git commit -m 「first commit」

$ git remote add origin 《專案url, 如[email protected]:***/***.git>

$ git push -u origin master

例如git config --global user.name "your name here"

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

touch readme.md

git init

git add readme.md

git commit -m "first commit"

git remote add origin [email protected]:qq_16605855/spring_mvc.git

git push -u origin master

上傳本地專案到git

1 到需要上傳的資料夾下,開啟gitbase 2 git init 3 git add 4 git commit m init 5 驗證許可權 首先在git bash中輸入 ssh keygen t rsa c youremail com 然後一路回車,這個會在當前使用者資料夾下,生成.ssh 資料...

git命令上傳本地專案

1.在git上建立專案 2.建立資料夾,在資料夾內右鍵資料夾 git bash here 3.初始化 本地倉庫 會在資料夾生成乙個.git隱藏資料夾 git init4.轉殖專案 git clone 專案位址5.獲取指定分支的專案 git clone b 分支名 倉庫位址 5.將需要上傳的檔案放入的...

使用git工具上傳本地專案

git init 把這個目錄變成git可以管理的倉庫。git add readme.md 檔案新增到倉庫 git add 不但可以跟單一檔案,還可以跟萬用字元,更可以跟目錄。乙個點就把當前目錄下所有未追蹤的檔案全部add了 git commit m first commit 把檔案提交到倉庫 git...