参考链接:

使用Git-GUI创建工程

http://jingyan.baidu.com/article/27fa732683ebf546f8271f2e.html

一、刚创建的github版本库,在push代码时出错:

$ git push -u origin master
To git@https://github.com/wishchin/SlamWishG2O.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@https://github.com/wishchin/SlamWishG2O.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

网上搜索了下,是因为远程repository和我本地的repository冲突导致的,而我在创建版本库后,在github的版本库页面点击了创建README.md文件的按钮创建了说明文档,但是却没有pull到本地。这样就产生了版本冲突的问题。

有如下几种解决方法:

1.使用强制push的方法:

      $ git push SlamWishG2O master -f 

这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。

2.push前先将远程repository修改pull下来

      $ git pull SlamWishG2O master
$ git push -u SlamWishG2O master

3.若不想merge远程和本地修改,可以先创建新的分支:

      $ git branch [name]

然后push

      $ git push -u SlamWishG2O [name]

最新文章

  1. css3 transition属性
  2. iOS的一像素线
  3. Tomcat相关的笔记
  4. Unity 移动端触摸屏操作
  5. Fixing the Great Wall
  6. HTTPClient模块的HttpGet和HttpPost
  7. codevs1226倒水问题(Bfs)
  8. mybatis深入理解之 # 与 $ 区别以及 sql 预编译
  9. centos7 jdk8 tomcat8 安装
  10. 20165232 week1 kali安装
  11. PHP Excel使用方法
  12. chart.js应用中遇到的问题
  13. Spring集成JUnit单元测试框架
  14. 第一次使用Android Studio时你应该知道的一切配置(一)
  15. curl 伪装来路(referer)
  16. shell 基本命令
  17. Vue.js总结 [2017.6.5]
  18. Android--Android Studio 打开ADM报错
  19. VS Code 使用小技巧
  20. POJ 3259 Bellman_Ford算法

热门文章

  1. BZOJ 1724 USACO 2006 Nov. 切割木板
  2. Sencha Touch中 xclass和xtype区别
  3. 调度器Quartz的配置文件中的线程池设置
  4. linux下的C语言开发(gdb调试)
  5. [Java 并发] Java并发编程实践 思维导图 - 第四章 对象的组合
  6. mongodb数据库的启动和停止
  7. Codeforces Round #257 (Div. 2/B)/Codeforces450B_Jzzhu and Sequences
  8. pat解题报告【1082】
  9. 新手对ASP.NET MVC的疑惑
  10. QFileDialog关于选择文件对话框中的几个信号的说明(currentChanged,directoryEntered,fileSelected,filterSelected)