1. 程式人生 > >Git Bash上傳專案至Github

Git Bash上傳專案至Github

1. 在Github上新建一個repository。

3. 選擇專案資料夾,點選滑鼠右鍵,在彈出的選單項中選擇“Git Bash Here”。

4. 將Github上的倉庫克隆到本地,在bash中:

Git clone [email protected]:dhuQChen/MLinAction.git

注:語句中地址換成你repository中project的https地址或ssh地址

https或ssh地址獲取:點選專案下“Clone or Download”按鈕出現的小框中複製。

5. 第4步結束,專案資料夾下會新多出一個資料夾,即Github上的倉庫資料夾,將新多出來的資料夾之外

的其他檔案全複製到新多出來的資料夾裡面。

6. 在bash中:

cd repository_name

注:repository_name 換成你Github上repository名字,即新多出來的資料夾名字。

7. 在bash中:

git add .

注:不要忘記後面“.”,表示添加當前目錄的所有檔案到repository。另外,新新增一個檔案不會重新上傳舊檔案。

8. 在bash中:

git commit -m "commit info"

注:"commit info"為備註資訊,任意填寫。

此處需要注意,第一次需要核對核對身份,在bash中:

git config --global user.email "

[email protected]"

git config --global user.name "dhuQChen"

9. 在bash中:

git push -u origin master