You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but it allows you to rebase stacked branches as well.
11
+
</p>
12
+
</div>
13
+
14
+
previously, if you wanted to adopt a stacked branch workflow, you'd have to do a lot of manual work every time you'd update anything in your stack -- jump thru each branch, re-rebase it on top of the previous one, get rid of duplicate commits, resolve conflicts, try to remember what the next branch was, and repeat...
15
+
16
+
there must be a better way. and that's exactly how git-stacked-rebase came to be.
6
17
7
18
a branch is just a reference to some commit (literally, it's a single-line file that contains a 40-character commit SHA -- check your `.git/refs/` folder). why not just work on your latest feature branch, rebase comfortably, and then have your tool automatically update the partial branches to make them point to the correct new commits?
8
19
@@ -16,6 +27,8 @@ it's not only a CLI either - it's first and foremost a javascript library, and t
16
27
17
28
in the future, we could create host-specific adapters. they could be used to automate some simple tasks, such as creating a pull request, or changing the base branch of a pull request, etc.
18
29
30
+
there are bigger plans as well, such as creating a browser extension to improve the experience of exploring stacked PRs.
0 commit comments