1. 程式人生 > >上傳項目到github上

上傳項目到github上

osi -a eat 右鍵 ini com git init 項目 登錄

1. 登錄github後,在主頁new repository一個新項目,填寫Repository name和Description
2. Create repository後生產git地址https://github.com/username/xxx.git
3. 在要上傳的工程master下(工程裏面目錄),右鍵—>GitBash
4. git init
5. git add . -A
6. git commit -m "更新說明"
7. git remote add origin https://github.com/username/xxx.git
8. git push -u origin master
github 賬號與密碼:
username: xxxx
pwd: xxxx

上傳項目到github上