1, 在Github上建立仓库.
2, 保证本地已经安装了GIT.并配置好:
$ git config --global user.name “YourName”$ git config --global user.email “YouEmailAddress”
$ ssh-keygen -C “YouEmailAddress” -t rsa
1> 在本地项目目录创建好文件.
2> $ git init (初始化一个git仓库)
3> $ git add . (将所有文件添加到仓库)
4> $ git commit -m “commit info” (提交)
5> $ git remote add origin git@github.com:YourName/YourRepositroy.git (添加源到github)
6> $ git push -u origin master (上传源到github)
----------------
如果提交失败,返回如下的错误信息:
error: failed to push some refs to 'git@github.com:******/Demo.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.
是因为远程repository和本地的repository冲突导致的,在创建版本库后,在github的版本库页面点击了创建README.md文件的按钮创建了说明文档,但是却没有pull到本地。这样就产生了版本冲突的问题。
有如下几种解决方法:
1.使用强制push的方法:
$ git push -u origin master -f
这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。
2.push前先将远程repository修改pull下来
$ git pull origin master
$ git push -u origin master
3.若不想merge远程和本地修改,可以先创建新的分支:
$ git branch [name]
$ git push -u origin [name]
1986

被折叠的 条评论
为什么被折叠?



