summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-11-03 15:52:45 +0100
committerSebastian Thiel <byronimo@gmail.com>2009-11-03 15:52:45 +0100
commitdbc18b92362f60afc05d4ddadd6e73902ae27ec7 (patch)
tree963e86880e5375a549910e9942e0064a37ddf33d /TODO
parent6bca9899b5edeed7f964e3124e382c3573183c68 (diff)
downloadgitpython-dbc18b92362f60afc05d4ddadd6e73902ae27ec7.tar.gz
repo: added create_* and delete_* methods for refs ( head, tag, remote ) as a convenient shortcut to using the classes manually
Diffstat (limited to 'TODO')
-rw-r--r--TODO4
1 files changed, 0 insertions, 4 deletions
diff --git a/TODO b/TODO
index 147eb02d..e77ba340 100644
--- a/TODO
+++ b/TODO
@@ -106,8 +106,6 @@ Remote
------
* iter_items should parse the configuration file manually - currently a command
is issued which is much slower than it has to be ( compared to manual parsing )
-* Creation and deletion methods for references should be part of the interface, allowing
- repo.create_head(...) instaed of Head.create(repo, ...). Its a convenience thing, clearly
* When parsing fetch-info, the regex will not allow spaces in the target remote ref as
I couldn't properly parse the optional space separated note in that case. Probably
the regex should be improved to handle this gracefully.
@@ -118,8 +116,6 @@ Repo
currently regex are used a lot although we can deduct what will be next.
- Read data from a stream directly from git command
* Figure out how to implement a proper merge API
-* There should be a way to create refs and delete them, instead of having to use
- the awkward Head.create( repo, ... ) way
* repo.checkout should be added that does everything HEAD.reset does, but in addition
it allows to checkout heads beforehand, hence its more like a repo.head.reference = other_head.