• @[email protected]
    link
    fedilink
    35 months ago

    Does this help with rebasing? I rarely have a need to rebase but all the same I avoid it because I just don’t get it.

    • Madlaine
      link
      fedilink
      45 months ago

      How you could somewhat rebase manually (to understand the effect; or because you like to handle the merge conflicts more granular or be more selective):

      We assume we have the branch “Feat” which was started on an old version of “Main”, and now want to rebase it:

      • Rename “Feat” to “Old” (does not happen during rebase, but we kinda need it for this demonstration)
      • Create “Feat” at the newest (or wherever you want) commit of “Main”
      • Cherrypick all commits from “Old” into “Feat”

      Et viola - you kinda manually rebased “Feat” on “Main”

      • @[email protected]
        link
        fedilink
        25 months ago

        Unless you really hate the commits that say “merged branch X into Y” I never saw rebasing as any easier than merging.

        • Traister101
          link
          fedilink
          15 months ago

          Rebasing shines for local commits not remote commits. IE rebase your commits onto the remote or amend the previous commit (yes that’s actually a rebase)

    • @TheCommieAxolotlOP
      link
      25 months ago

      Not currently but it is planned to be added soon along with in-client conflict resolution.

    • @QuadriLiteral
      link
      15 months ago

      Rebasing is basically copy/paste of commits. I do it all the time, to keep a feature branch updated with develop for instance.

        • @[email protected]
          link
          fedilink
          15 months ago

          Handling conflicts in a merge will have them applied in a Merge commit (the only time a commit can have two parents).

          Handling conflicts via a rebase will cascade across the replayed (copied) commits from which you’re restarting onto the new base commit, individually. You will not have a Merge commit, each commit will have a single parent.

          Reasons to perform a rebase. When your branch is to be temporary, when you want to be able to find a problem from commit to commit via a bisect, or when the total number of commits with expected conflicts is low.

          Reasons to perform a merge. When you have two long running branches and you want to track the history of a single commit. For example when you have a release that you have tagged and you need a hotfix. You apply the fix to your release and then merge it into your mainline. So that you have historical reference of what was deployed when.

          When is it fuzzy to use rebases vs merges. Working with others. You can rebase your local branch (and push your fast-forward merge), but not the shared branch. This changes the “history” (even when there are copies). Merges are most often the best tool when you are working with a shared branch.

          I just brought up another merge, Fast-Forward merge. In git, branches are essentially a file with a commit in it. Every commit has a parent, with one exception, the first one. So long you have one commit, you can traverse the entire history up to that commit. So when your branch or remote has a commit that exists in the history of the target branch and you want to perform a merge it is called a Fast-Forward merge because you are simply updating the commit in that file to the commit that is newer. If there is a commit in a branch that does not exist one of the two branches, you will see an error and you will need to perform a Merge commit or a rebase.

          There is also Squash merge, which collapses all commits into a single commit into a target branch. You will lose the history, but that may not be important (such as a Pull Request) where the history is not relevant (this is what we do at my workplace). When using a Squash merge, it will not matter if you use a Merge commit or a Rebase since it all just disappears (except the changes).