1.打开git.bash
2. 告诉要传的git的用户名字 和邮箱地址
git config --global user.name "CardLove"
git config --global user.email "1079321689@qq.com"
3.进入要上传代码的路径中,
4.git 初始化
git init
5.添加文件 .的意思添加当前文件的所有文件
git add .
6.传递上去
git commit -m "helloWord"
7. 传到github 地址
git remote add origin https://github.com/CardLove/Android.git
8.
git push -u origin master