summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-15 16:52:20 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-15 16:52:20 +0200
commit00c5497f190172765cc7a53ff9d8852a26b91676 (patch)
tree63163a2d92d1e35dd419492af906c42de75e586d /CHANGES
parent806450db9b2c4a829558557ac90bd7596a0654e0 (diff)
downloadgitpython-00c5497f190172765cc7a53ff9d8852a26b91676.tar.gz
repo: made init and clone methods less specific, previously they wanted to do it 'barely' only. New method names closely follow the default git command names
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES7
1 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 296c0fe8..22fe3e28 100644
--- a/CHANGES
+++ b/CHANGES
@@ -59,7 +59,12 @@ Repo
repositories which are likely to have completly different commits. For
related repositories, i.e. clones, git-rev-list would be sufficient to find
commits that would need to be transferred for example.
-* Renamed commits to iter_commits to improve the performance, adjusted signature
+ - 'create' method which equals the 'init' method's functionality
+* Renamed the following methods:
+ - commits to iter_commits to improve the performance, adjusted signature
+ - init_bare to init, implying less about the options to be used
+ - fork_bare to clone, as it was to represent general clone functionality, but implied
+ a bare clone
to be more versatile
* 'commits' method has no max-count of returned commits anymore, it now behaves
like git-rev-list