简体   繁体   中英

How to push the project I clone from GitHub to my own empty repo?

I have some issue about using git and GitHub.

I clone the LLVM project from its GitHub, and make some change by myself. So I may do some commit on local.

Now I want to push this whole project to my own repo on GitHub including my own commit.

I search some tutorial about this, and I did do some command to it.

Here is my command, and there are some errors:

  1. I create an empty repo on my own GitHub account, let's name myrepo
$ git config --global http.postBuffer 524288000 # because the size of LLVM project is to large.
$ git push --mirror https://github.com/MyAccount/myrepo.git
# Run some information that is not error message.
error: failed to push some refs to 'https://github.com/MyAccount/myrepo.git'

How do I fix that?

I have tried git remote add original https://github.com/MyAccount/myrepo.git and it show up that there is existing remote (llvm-project) for sure.

I solve it by myself. And yes, I need to change the remote like comment said.

Here is what I do:

git remote set-url origin https://github.com/MyAccount/myrepo.git
git push

That is, I can push this to my own repo now.

Thanks!!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM