Github:在不先pull的情况下,如何直接push本地文件到repository
高洛峰
高洛峰 2017-04-27 09:03:13
0
3
766

刚接触git,在使用的时候,碰到了这样一个情况。
本地存在这么些文件:
D:/Code/Python/createdict.py
E:/Python/downpic.py
然后,想将以上文件都push到github的同一个repository下(eg:git@github.com:xxx/Python.git
但是,在push的时候,发现每次都需要先使用git pull命令将最新的远程库抓取到本地,然后,才可以使用git push origin master
我的需求只是想要将本地不同位置处的代码文件push到github上的同一个repository下,而如果每次都得先下载最新的库,那岂不是很麻烦?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

reply all(3)
黄舟

git checkout开分支提交然后mergebranch.

给我你的怀抱
  • Create a branch: a file branch on the d drive (d), a file branch on the e drive (e), and an original master branch
  • Pull the master branch first
  • merge d into master
  • merge e into master
  • push
  • commit
習慣沉默

Git is based on commit, not on files or directories. Even if you modify two files with different paths, the latter modification will also depend on the previous one.

So you must pull before each push.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template