summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-11-03 18:04:40 +0100
committerSebastian Thiel <byronimo@gmail.com>2009-11-03 18:04:40 +0100
commit9b426893ce331f71165c82b1a86252cd104ae3db (patch)
tree5df94563c0243fa8bffa9e8c909dcef79ad69acd /TODO
parent572ace094208c28ab1a8641aedb038456d13f70b (diff)
downloadgitpython-9b426893ce331f71165c82b1a86252cd104ae3db.tar.gz
Reference.from_path now only creates references, not symbolic refs. SymbolicReference.from_path creates only symbolic refs. This change was not detected by a test, hence there is room for improvement on the testing field
Diffstat (limited to 'TODO')
-rw-r--r--TODO14
1 files changed, 5 insertions, 9 deletions
diff --git a/TODO b/TODO
index 0fe33050..a350bf55 100644
--- a/TODO
+++ b/TODO
@@ -85,15 +85,11 @@ Refs
handles symbolic refs as well as normal refs, updating the reflog if required.
* I have read that refs can be symbolic refs as well which would imply the need
to possibly dereference them. This makes sense as they originally where possibly
- a symbolic link
-* Check whether we are the active reference HEAD.reference == this_ref
- - NO: The reference dosnt need to know - in fact it does not know about the
- main HEAD, so it may not use it. This is to be done in client code only.
- Remove me
-* Reference.from_path may return a symbolic reference although it is not related
- to the reference type. Split that up into two from_path on each of the types,
- and provide a general method outside of the type that tries both.
-* Making the reflog available might be useful actually.
+ a symbolic link. This would mean References could be derived from SymbolicReference
+ officially, but it would still be bad as not all References are symbolic ones.
+* Making the reflog available as command might be useful actually. This way historical
+ references/commits can be returned. Git internally manages this if refs are specified
+ with HEAD@{0} for instance
Remote
------