summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-22 23:20:16 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-22 23:20:16 +0200
commit58e2157ad3aa9d75ef4abb90eb2d1f01fba0ba2b (patch)
tree3487e8a52687317cba7cc369a094459db4fdd770 /CHANGES
parentb2a14e4b96a0ffc5353733b50266b477539ef899 (diff)
downloadgitpython-58e2157ad3aa9d75ef4abb90eb2d1f01fba0ba2b.tar.gz
Added SymbolicReference and HEAD type to better represent these special types of references and allow special handling
Head.reset now is an instance method of HEAD type Concatenated all reference specific tests into test_refs started to fix tests breaking now because of changed interface
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 6 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 3b42095e..8a529e6b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -87,9 +87,12 @@ Index
* A new Index class allows to read and write index files directly, and to perform
simple two and three way merges based on an arbitrary index.
-Refs
-----
-* Will dynmically retrieve their object at the time of query to assure the information
+Referernces
+------------
+* References are object that point to a Commit
+* SymbolicReference are a pointer to a Reference Object, which itself points to a specific
+ Commit
+* They will dynmically retrieve their object at the time of query to assure the information
is actual. Recently objects would be cached, hence ref object not be safely kept
persistent.