summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-06-30 20:55:32 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-07-02 07:05:00 +0200
commitd58a64e9a5d32b511447943f20a84340b520872f (patch)
tree5b1dc2b7a8a3c24b7c62de61bb249084afbf7521 /CHANGELOG.md
parentdcdb8500e3bd719010a1a65fffc391eef23dd4b4 (diff)
downloadlibgit2-d58a64e9a5d32b511447943f20a84340b520872f.tar.gz
clone: add a callback for repository creation
Analogously to the remote creation callback, provide a way for the user of git_clone() to create the repository with whichever options they desire via callback.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3938dcbcf..f2cb3d213 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,3 +25,7 @@ v0.21 + 1
The remote_callbacks member has been preserved for convenience, although it
is not used when a remote creation callback is supplied.
+
+* The git_clone_options struct now provides repository_cb and
+ repository_cb_payload to allow the user to create a repository with
+ custom options.