Skip to content

Instantly share code, notes, and snippets.

View 0res7's full-sized avatar
👽
I may be slow to respond.

Sai Krishna Gajula 0res7

👽
I may be slow to respond.
  • Infosys Ltd
  • 03:43 (UTC -12:00)
View GitHub Profile
@0res7
0res7 / git_rebase.md
Created January 6, 2024 04:41 — forked from ravibhure/git_rebase.md
Git rebase from remote fork repo

In your local clone of your forked repository, you can add the original GitHub repository as a "remote". ("Remotes" are like nicknames for the URLs of repositories - origin is one, for example.) Then you can fetch all the branches from that upstream repository, and rebase your work to continue working on the upstream version. In terms of commands that might look like:

Add the remote, call it "upstream":

git remote add upstream https://github.com/whoever/whatever.git

Fetch all the branches of that remote into remote-tracking branches, such as upstream/master:

git fetch upstream