summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-27 20:46:26 +0100
committerSebastian Thiel <byronimo@gmail.com>2009-10-27 20:46:26 +0100
commit038f183313f796dc0313c03d652a2bcc1698e78e (patch)
tree11eeaeaec4512e9764d4be568ed24034bd356306 /TODO
parent5047344a22ed824735d6ed1c91008767ea6638b7 (diff)
downloadgitpython-038f183313f796dc0313c03d652a2bcc1698e78e.tar.gz
implemented test for rejection handling and fixed a bug when parsing remote reference paths
Diffstat (limited to 'TODO')
-rw-r--r--TODO7
1 files changed, 3 insertions, 4 deletions
diff --git a/TODO b/TODO
index 4dced9c6..869d9003 100644
--- a/TODO
+++ b/TODO
@@ -107,10 +107,9 @@ Remote
* Fetch should return heads that where updated, pull as well.
* 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 have problems properly handling white-space in the
- actual head or tag name as it does not know when the optional additional message will begin.
- This can possibly improved by making stronger assumptions about the possible messages or
- by using the data from FETCH_HEAD instead or as additional source of information
+* 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.
Repo
----