How can I keep my fork in sync without adding a separate remote?

后端 未结 7 1171
孤独总比滥情好
孤独总比滥情好 2020-12-04 04:06

Let\'s assume there is a repository someone/foobar on GitHub, which I forked to me/foobar.

How do I pull new commits from

相关标签:
7条回答
  • 2020-12-04 04:46
    git remote set-url origin git@github.com:someone/foobar
    git remote set-url origin --push git@github.com:me/foobar
    

    There is one caveat though:
    This is perfect if you are the only one making changes to your fork.
    However, if it is shared with other people, you may have to pull from your fork, in which case a separate remote is the only solution.

    Edit:
    Actually, you can git pull git@github.com:me/foobar, which removes the caveat.
    The choice is yours as to which is easier to remember.

    0 讨论(0)
  • I used a fairly simple method using the GitHub Web UI to do that:

    1. Open the original Git repository (not the forked Git repository me/foobar)
    2. Jump to the src folder, and open the file you want to change
    3. Click the pen icon. It will automatically create a label in your personal fork named "patch-1" based on the current version of the master repository: Enter image description here
    4. Enjoy! Enter image description here
    0 讨论(0)
  • 2020-12-04 04:51

    Open the forked Git repository me/foobar.

    Click on Compare:

    Here is a sample image of the page

    You will get the notification:

    There isn't anything to compare.
    someone:master is up to date with all commits from me:master. Try switching the base for your comparison.

    Click on switching the base on this page:

    Here is an example on the page

    Then you get to see all the commits made to someone/foobar after the day you forked it.

    Click on Create pull request:

    Here is a sample page

    Give the pull request a title and maybe a description and click Create pull request.

    On the next page, scroll to the bottom of the page and click Merge pull request and Confirm merge.

    Your Git repository me/foobar will be updated.

    Edit: rebase options are shown here:

    0 讨论(0)
  • 2020-12-04 05:00

    The "Pull" app is an automatic set-up-and-forget solution. It will sync the default branch of your fork with the upstream repository.

    Visit the URL, click the green "Install" button and select the repositories where you want to enable automatic synchronization.

    The branch is updated once per hour directly on GitHub, on your local machine you need to pull the master branch to ensure that your local copy is in sync.

    Also answered in https://stackoverflow.com/a/58965171/946850.

    0 讨论(0)
  • 2020-12-04 05:00

    I would simply use:

    git pull git@github.com:someone/foobar <branch_name> && git push
    
    0 讨论(0)
  • 2020-12-04 05:02

    Another option is to use the Update from upstreamRepoName/master button in GitHub for Mac (and I assume GitHub for Windows).

    0 讨论(0)
提交回复
热议问题