1
0
mirror of https://github.com/git/git.git synced 2024-10-22 11:18:17 +02:00
git/todo

51 lines
1.6 KiB
Plaintext
Raw Normal View History

2009-04-26 14:53:14 +02:00
delete tempdir
2009-05-24 21:28:54 +02:00
2009-04-26 14:53:14 +02:00
'git subtree rejoin' option to do the same as --rejoin, eg. after a
rebase
2009-05-24 21:28:54 +02:00
--prefix doesn't force the subtree correctly in merge/pull:
2009-04-26 14:53:14 +02:00
"-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...)
2009-05-24 21:28:54 +02:00
add a 'push' subcommand to parallel 'pull'
add a 'log' subcommand to see what's new in a subtree?
2009-05-24 21:28:54 +02:00
add to-submodule and from-submodule commands
automated tests for --squash stuff
2009-06-15 20:12:40 +02:00
test.sh fails in msysgit?
sort error - see Thell's email
2009-07-02 18:39:48 +02:00
"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.
In fact, the prefix should *not* end with slash, and we
should detect (and fix) it if it does. Otherwise the
log message looks weird.
2009-07-07 23:41:38 +02:00
totally weird behavior in 'git subtree add' if --prefix matches
a branch name
2009-07-10 21:14:33 +02:00
"pull --squash" should do fetch-synthesize-merge, but instead just
does "pull" directly, which doesn't work at all.