1.登录github
2.new project
3.在本地项目文件夹 执行命令
1. git init //在项目根目录下
2. git add . //把当前目录下的已有文件全部加到刚刚新建的本地git仓库中
3. git commit -m "push current files" //保存刚刚加入的文件,并书写保存信息
//将本地仓库与远程仓库关联起来
4. git remote add origin git@github.com:yuanmingchen/tensorflow_study.git
//pull远程仓库的内容,更新本地仓库,使用–allow-unrelated-histories忽略本地仓库和远程仓库的无关性,强行合并(远程空仓库可以不做)
5. git pull origin master --allow-unrelated-histories
//把本地仓库的内容push到远程仓库
6. git push -u origin master
网友评论