使用git遠程上傳項目

 **使用git遠程傳項目** 
	1. 安裝並打開git 
    2. 進入到項目文件夾,git clone http://(要傳的地址) 
    3. git config –list 
    4. git config -e [–global] 
    5. git config user.name “[]” 括號裏面寫你的GitHub名字 
    6. git config user.email “[]” 括號裏寫你的GitHub郵箱 
    7. ls 
    8. ls -ll 
    9. cd .git 
    10. ls 
    11. cd .. 
    12. ls 
    13. git status 
    14. git add ./ 
    15. git status 
    16. git commit -m “first commit” 
    17. git push origin master 
    18. 項目傳送完成

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章