1. 程式人生 > >github自己常用的上傳步驟

github自己常用的上傳步驟

comm git init nbsp git bash origin 描述 步驟 目的 push

1.新建一個項目的文件夾

2.用Git Bash Here打開

3. git init

4.粘貼需要的文件並:git add . (註意add後面有一個空格和一個點)

5.git commit -m "你的描述"

6.在github網站上新建一個倉庫

7.git remote add origin 你的倉庫地址

8.git push -u origin master

github自己常用的上傳步驟