search

Home  >  Q&A  >  body text

Github:在不先pull的情况下,如何直接push本地文件到repository

刚接触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下,而如果每次都得先下载最新的库,那岂不是很麻烦?

高洛峰高洛峰2796 days ago768

reply all(3)I'll reply

  • 黄舟

    黄舟2017-04-27 09:05:13

    git checkout开分支提交然后mergebranch.

    reply
    0
  • 给我你的怀抱

    给我你的怀抱2017-04-27 09:05:13

    • 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

    reply
    0
  • 習慣沉默

    習慣沉默2017-04-27 09:05:13

    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.

    reply
    0
  • Cancelreply