aboutsummaryrefslogtreecommitdiff
path: root/contrib/subtree/todo
diff options
context:
space:
mode:
authorDavid A. Greene <greened@obbligato.org>2012-04-09 20:22:55 -0500
committerDavid A. Greene <greened@obbligato.org>2012-04-09 20:22:55 -0500
commit634392b26275fe5436c0ea131bc89b46476aa4ae (patch)
tree728d3c779524e2b78ee5b088eeb5ecccdb081779 /contrib/subtree/todo
parente8dde3e5f9ddb7cf95a6ff3cea6cf07c3a2db80d (diff)
parentd3a04e06c77d57978bb5230361c64946232cc346 (diff)
downloadgit-634392b26275fe5436c0ea131bc89b46476aa4ae.tar.gz
git-634392b26275fe5436c0ea131bc89b46476aa4ae.tar.xz
Add 'contrib/subtree/' from commit 'd3a04e06c77d57978bb5230361c64946232cc346'
git-subtree-dir: contrib/subtree git-subtree-mainline: e8dde3e5f9ddb7cf95a6ff3cea6cf07c3a2db80d git-subtree-split: d3a04e06c77d57978bb5230361c64946232cc346
Diffstat (limited to 'contrib/subtree/todo')
-rw-r--r--contrib/subtree/todo50
1 files changed, 50 insertions, 0 deletions
diff --git a/contrib/subtree/todo b/contrib/subtree/todo
new file mode 100644
index 000000000..7e44b0024
--- /dev/null
+++ b/contrib/subtree/todo
@@ -0,0 +1,50 @@
+
+ delete tempdir
+
+ 'git subtree rejoin' option to do the same as --rejoin, eg. after a
+ rebase
+
+ --prefix doesn't force the subtree correctly in merge/pull:
+ "-s subtree" should be given an explicit subtree option?
+ There doesn't seem to be a way to do this. We'd have to
+ patch git-merge-subtree. Ugh.
+ (but we could avoid this problem by generating squashes with
+ exactly the right subtree structure, rather than using
+ subtree merge...)
+
+ add a 'push' subcommand to parallel 'pull'
+
+ add a 'log' subcommand to see what's new in a subtree?
+
+ add to-submodule and from-submodule commands
+
+ automated tests for --squash stuff
+
+ "add" command non-obviously requires a commitid; would be easier if
+ it had a "pull" sort of mode instead
+
+ "pull" and "merge" commands should fail if you've never merged
+ that --prefix before
+
+ docs should provide an example of "add"
+
+ note that the initial split doesn't *have* to have a commitid
+ specified... that's just an optimization
+
+ if you try to add (or maybe merge?) with an invalid commitid, you
+ get a misleading "prefix must end with /" message from
+ one of the other git tools that git-subtree calls. Should
+ detect this situation and print the *real* problem.
+
+ "pull --squash" should do fetch-synthesize-merge, but instead just
+ does "pull" directly, which doesn't work at all.
+
+ make a 'force-update' that does what 'add' does even if the subtree
+ already exists. That way we can help people who imported
+ subtrees "incorrectly" (eg. by just copying in the files) in
+ the past.
+
+ guess --prefix automatically if possible based on pwd
+
+ make a 'git subtree grafts' that automatically expands --squash'd
+ commits so you can see the full history if you want it.