summaryrefslogtreecommitdiff
path: root/git-debrebase
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2017-03-10 15:34:48 +0000
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-06-16 12:25:49 +0100
commitc7326d0b665f3832ab36409d6c93cacccb6b8c68 (patch)
treee992a7e9d95cc0ccdf58b272a008552bede5bad3 /git-debrebase
parente1b9d828dd3e3ad28308114ba957f2acedc314ea (diff)
git-debrebase: wip notes
Diffstat (limited to 'git-debrebase')
-rwxr-xr-xgit-debrebase51
1 files changed, 40 insertions, 11 deletions
diff --git a/git-debrebase b/git-debrebase
index 71167e8..ba990e7 100755
--- a/git-debrebase
+++ b/git-debrebase
@@ -20,8 +20,8 @@
# usages:
# git-debrebase status
-# git-debrebase start # like ffrebase start + debrebase launder
-# git-debrebase new-upstream [-f] <upstreaminfo>...
+# git-debrebase start # like ffqrebase start + debrebase launder
+# git-debrebase new-upstream [stuff] # see below
# git-debrebase <git-rebase options> # does debrebase start if necessary
#
# git-debrebase analyse
@@ -36,9 +36,37 @@
# xxx want auto branch names
# xxx too complicated
# how about for now
-# [+]<commit> [<subdir:> [+]<commit>...]
+# [+]<commit> [<subdir/> [+]<commit>...]
# ? plus options
# --new-upstream-different-subtrees
+#
+# automatic case
+# git-debrebase new-upstream
+# - previous breakwater merge must be gdr-generated
+# - orig set is the same as before
+# - implicitly uses upstream branches according to orig set
+# - not all upstream branches need be updated
+# - insists on fast-forward of each branch, unless
+# --force (or --force=<subdir>[/])
+# branch set adjustments
+# git-debrebase new-upstream --add <subdir>/
+# git-debrebase new-upstream --rm <subdir>/
+# git-debrebase new-upstream / [<subdir>/ ...]
+# - orig set is adjusted
+# - otherwise like auto (--add is not checked for ffness, obv)
+# - multiple --add and --rm may be specified
+# - --add makes new upstream the last contributor
+# explicit
+# git-debrebase / [<rootcommitid>] [<subdir>/ [<commitid>] ...]
+# - orig set is precisely as specified now
+# - previous breakwater merge is irrelevant
+# - no fast forward checks
+# for now only explicit with commitids
+
+ # implicitly uses `upstream'
+# # (or multiple other branches)
+# git-debrebase new-upstream \
+# [<subdir>/]=<commitid>
# UPSTREAM[,[[SUBDIR:]SUBUPSTREAM]
# default for SUBDIR: is from previous upstream merge[xxx terminology]
@@ -48,15 +76,16 @@
# when starting must record original start (for ff)
# and new rebase basis
#
-# git-ffrebase start [BASE] # records previous HEAD so it can be overwritten
-# # records base for future git-ffrebase
-# git-ffrebase set-base BASE
-# git-ffrebase <git-rebase options>
-# git-ffrebase finish
-# git-ffrebase status [BRANCH]
+# git-ffqrebase start [BASE]
+# # records previous HEAD so it can be overwritten
+# # records base for future git-ffqrebase
+# git-ffqrebase set-base BASE
+# git-ffqrebase <git-rebase options>
+# git-ffqrebase finish
+# git-ffqrebase status [BRANCH]
#
-# refs/ffrebase-prev/BRANCH BRANCH may be refs/...; if not it means
-# refs/ffrebase-base/BRANCH refs/heads/BRANCH
+# refs/ffqrebase-prev/BRANCH BRANCH may be refs/...; if not it means
+# refs/ffqrebase-base/BRANCH refs/heads/BRANCH
# zero, one, or both of these may exist
use strict;