Top "Rebase" questions

Changing the starting point of a branch in a Version Control System.

Git rebase one branch on top of another branch

In my git repo, I have a Master branch. One of the remote devs created a branch Branch1 and had …

git rebase
Resolving a 'both added' merge conflict in git?

I'm rebasing in git, and one conflict I get is 'both added' - that is, exactly the same filename has …

git merge rebase
Git commits are duplicated in the same branch after doing a rebase

I understand the scenario presented in Pro Git about The Perils of Rebasing. The author basically tells you how to …

git branch rebase
Git: difference "git rebase origin/branch" VS "git rebase origin branch"

Does anyone know what is the difference? Seems to me, it is the same. But when I run it, it …

git rebase
Insert a commit before the root commit in Git?

I've asked before about how to squash the first two commits in a git repository. While the solutions are rather …

git version-control rebase git-rebase
Git interactive rebase no commits to pick

I'm on master and I did rebase -i <my_branch> Got this: noop # Rebase c947bec..7e259d3 …

git rebase
Subversion rebase?

I find this way easier to merge branches and less conflicts: Copy trunk to a new branch, merge it with …

svn rebase svn-reintegrate
Is there a way to squash a number of commits non-interactively?

I'm trying to squash a range of commits - HEAD to HEAD~3. Is there a quick way to do this, …

git interactive rebase squash
Combine the first two commits of a Git repository?

Suppose you have a history containing the three commits A, B and C: A-B-C I would like to combine the …

git rebase git-rebase git-rewrite-history
Merging multiple branches with git

I have 2 local branches called "develop" and "master"; they are similar. On my company's server there's one "main" repo (production) …

git merge rebase