diff options
author | Ben Straub <bs@github.com> | 2014-01-28 10:44:33 -0800 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2014-01-30 15:52:13 -0800 |
commit | 540c1809f40c1bb3cf08627a85921309852fa963 (patch) | |
tree | 09b2925d0733e0033768dff846ecf22bf5a19e49 /src | |
parent | 48110f67e4a21caac1b8157d8239d16cd9781e51 (diff) | |
download | libgit2-540c1809f40c1bb3cf08627a85921309852fa963.tar.gz |
Add reflog parameters to git_branch_move
Diffstat (limited to 'src')
-rw-r--r-- | src/branch.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/branch.c b/src/branch.c index 531101f8a..4658d3bdd 100644 --- a/src/branch.c +++ b/src/branch.c @@ -190,7 +190,9 @@ int git_branch_move( git_reference **out, git_reference *branch, const char *new_branch_name, - int force) + int force, + const git_signature *signature, + const char *log_message) { git_buf new_reference_name = GIT_BUF_INIT, old_config_section = GIT_BUF_INIT, |