aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-23 00:14:24 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-23 00:14:24 +0200
commit00499d994fea6fb55a33c788f069782f917dbdd4 (patch)
treef3de7739d34003a7356bd72769f212a47ebc8993 /CHANGES
parentb2a14e4b96a0ffc5353733b50266b477539ef899 (diff)
parentd1bd99c0a376dec63f0f050aeb0c40664260da16 (diff)
downloadGitPython-00499d994fea6fb55a33c788f069782f917dbdd4.tar.gz
GitPython-00499d994fea6fb55a33c788f069782f917dbdd4.zip
Merge branch 'symbolic_ref' into improvements
* symbolic_ref: SymbolicReferences can now change they references safely as I think and well controlled, including test. Adjusted tests to deal with API changes Added SymbolicReference and HEAD type to better represent these special types of references and allow special handling
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.