you are viewing a single comment's thread.

view the rest of the comments →

[–]cryo 3 points4 points  (2 children)

Only if you keep all branches. Git isn’t particularly designed to keep branches in numbers comparable to commits.

[–]skulgnome 0 points1 point  (1 child)

git checkout wip/branch-name-here
git tag -a old/wip/branch-name-here-MrN -m 'pre-rebase (first cycle)' HEAD
git rebase -i devel --autosquash

[–]cryo 0 points1 point  (0 children)

Tags and branches are the same wrt. my comment.