Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Ah ok in the meantime I think I guessed what you mean with forked. According to your question-tags you forked on github! Right?</p> <p>Ok then it is easy. A fork on github is basically a clone of the repository where you pressed the fork button.</p> <p>To reconnect to the original repository you do the following steps on your local machine:</p> <p>As Example and to try out I have forked libgit2 for this...</p> <pre><code>$ git clone https://github.com/MyOwnAccount/libgit2.git Cloning into 'libgit2'... remote: Counting objects: 43058, done. remote: Compressing objects: 100% (16412/16412), done. remote: Total 43058 (delta 30556), reused 37875 (delta 25761) Receiving objects: 100% (43058/43058), 12.22 MiB | 942 KiB/s, done. Resolving deltas: 100% (30556/30556), done. Checking out files: 100% (2432/2432), done. $ git remote -v origin https://github.com/MyOwnAccount/libgit2.git (fetch) origin https://github.com/MyOwnAccount/libgit2.git (push) $ git remote add forkOrigin https://github.com/libgit2/libgit2.git $ git remote -v forkOrigin https://github.com/libgit2/libgit2.git (fetch) forkOrigin https://github.com/libgit2/libgit2.git (push) origin https://github.com/MyOwnAccount/libgit2.git (fetch) origin https://github.com/MyOwnAccount/libgit2.git (push) $ git fetch forkOrigin $ git fetch --tags forkOrigin </code></pre> <p>Now you have all the latest commits, branches and tags from the repo where you forked. (You could use rebase or merge directly on the remote branches - do just as you like/need at this point, fetch was just the easiest way to show now)</p> <p>With this fetched data you can merge, rebase, cherry-pick etc. as usual.</p> <p>If you later on push the changes to your own repository you are done.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload