git教程(远程仓库和管理分支)
在github上新建了一个仓库,然后相与本地的仓库联系起来 $ Git remote add origin https://github.com/liona329/learngit.git fatal: Not a git repository (or any of the parent directories): .git 总是报这个错 解决方法:git init 然后就 $git add 上传东西名称 $git commit -m "说明的日志" 再来 $git remote add origin git@github.com:YingyingYu/yesminewine.git origin 后面的是我的git地址,你的自然要换成你的git地址 最后 $git push -u origin master (将本地项目推送到git远程仓库) 注意:一定要在自己的项目哪里,就是有隐藏的git文件哪里,再来 git add . 和 git commit -m "说明的话语" 最后 git push -u origin master 推送本地项目到git远程上去,否则推送不上去。 注意:如果你要将本地项目推送到github远程仓库上,当你在创建一个仓库是,一定不要勾选创建一个readme.txt,否则会冲突,本地项目上传不了github远程 github 新建分支的作用