首推
1、进入项目根目录
2、git init 用于git初始化;
3、git add * 添加将所有文件;(可以指定文件)
4、git remote add origin ****** ***代表github网站上创建好的项目目录地址,此处用意为将本地代码与github网站进行映射关联
5、git commit -m "XXXXX" XXX代表此次提交的备注标题,此步骤为本地提交
6、git push -u origin master 将刚才提交的代码进行推送到github上面,分支为master分支,可以更换其他分支
…or create a new repository on the command line
echo "# Every_day" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/ThomasTangKing/Every_day.git
git push -u origin master
…or push an existing repository from the command line
git remote add origin https://github.com/ThomasTangKing/Every_day.git
git push -u origin master
第二次上推
1、git add .
2、git commit -m"第二次上传"
3、git push -u origin master