赞
踩
完成上述三步之后,在弹出来的对话框中选择自己的项目目录,
点确定,就可以在文件管理器中看到目录下生成了一个隐藏目录 “ .git ”
右键项目目录,找到Git,根据图示找到remote
在弹出来的对话框中,输入自己远程仓库的地址
点击ok,输入验证信息,连接完毕。
点击push,全选项目文件,commit
我已经提交过了,因此显示为空。
提示我们要先从远程pull代码,然后才能push
好的,在项目目录中打开Git bash
输入命令:
$ git pull origin master
报错 fatal: refusing to merge unrelated histories
解决方案:
$ git pull origin master --allow-unrelated-histories
出现新问题:fatal: couldn’t find remote ref --allow-unrelated-histories
再解决:
$ git pull --rebase origin master
成功 pull 代码
最后向空仓库 push 我们的项目代码,输入命令:
$ git push -u origin master
去远程仓库刷新页面,搞定!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。