使用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. 项目传送完成

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