Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
14ab0e10
Commit
14ab0e10
authored
May 14, 2013
by
nulltoken
Committed by
Carlos Martín Nieto
Nov 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refs: Introduce git_reference_set_target_with_log()
parent
56ad3782
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
110 additions
and
4 deletions
+110
-4
include/git2/refs.h
+23
-0
src/refs.c
+32
-4
tests/refs/settargetwithlog.c
+55
-0
No files found.
include/git2/refs.h
View file @
14ab0e10
...
...
@@ -335,6 +335,29 @@ GIT_EXTERN(int) git_reference_set_target(
const
git_oid
*
id
);
/**
* Create a new reference with the same name as the given reference but a
* different OID target and update the reflog with a given message.
*
* The reference must be a direct reference, otherwise this will fail.
*
* The new reference will be written to disk, overwriting the given reference.
*
* @param out Pointer to the newly created reference
* @param ref The reference
* @param id The new target OID for the reference
* @param signature The identity that will used to populate the reflog entry
* @param log_message The one line long message that has to be appended
* to the reflog
* @return 0 or an error code
*/
GIT_EXTERN
(
int
)
git_reference_set_target_with_log
(
git_reference
**
out
,
git_reference
*
ref
,
const
git_oid
*
id
,
const
git_signature
*
signature
,
const
char
*
log_message
);
/**
* Rename an existing reference.
*
* This method works for both direct and symbolic references.
...
...
src/refs.c
View file @
14ab0e10
...
...
@@ -480,21 +480,49 @@ int git_reference_symbolic_create_with_log(
ref_out
,
repo
,
name
,
NULL
,
target
,
force
,
signature
,
log_message
);
}
static
int
ensure_is_an_updatable_direct_reference
(
git_reference
*
ref
)
{
if
(
ref
->
type
==
GIT_REF_OID
)
return
0
;
giterr_set
(
GITERR_REFERENCE
,
"Cannot set OID on symbolic reference"
);
return
-
1
;
}
int
git_reference_set_target
(
git_reference
**
out
,
git_reference
*
ref
,
const
git_oid
*
id
)
{
int
error
;
assert
(
out
&&
ref
&&
id
);
if
(
ref
->
type
!=
GIT_REF_OID
)
{
giterr_set
(
GITERR_REFERENCE
,
"Cannot set OID on symbolic reference"
);
return
-
1
;
}
if
((
error
=
ensure_is_an_updatable_direct_reference
(
ref
))
<
0
)
return
error
;
return
git_reference_create
(
out
,
ref
->
db
->
repo
,
ref
->
name
,
id
,
1
);
}
int
git_reference_set_target_with_log
(
git_reference
**
out
,
git_reference
*
ref
,
const
git_oid
*
id
,
const
git_signature
*
signature
,
const
char
*
log_message
)
{
int
error
;
assert
(
out
&&
ref
&&
id
);
assert
(
signature
&&
log_message
);
if
((
error
=
ensure_is_an_updatable_direct_reference
(
ref
))
<
0
)
return
error
;
return
git_reference_create_with_log
(
out
,
ref
->
db
->
repo
,
ref
->
name
,
id
,
1
,
signature
,
log_message
);
}
int
git_reference_symbolic_set_target
(
git_reference
**
out
,
git_reference
*
ref
,
...
...
tests/refs/settargetwithlog.c
0 → 100644
View file @
14ab0e10
#include "clar_libgit2.h"
#include "repository.h"
#include "git2/reflog.h"
#include "reflog.h"
#include "ref_helpers.h"
static
const
char
*
br2_tip
=
"a4a7dce85cf63874e984719f4fdd239f5145052f"
;
static
const
char
*
master_tip
=
"a65fedf39aefe402d3bb6e24df4d4f5fe4547750"
;
static
const
char
*
br2_name
=
"refs/heads/br2"
;
static
git_repository
*
g_repo
;
void
test_refs_settargetwithlog__initialize
(
void
)
{
g_repo
=
cl_git_sandbox_init
(
"testrepo.git"
);
}
void
test_refs_settargetwithlog__cleanup
(
void
)
{
cl_git_sandbox_cleanup
();
}
void
test_refs_settargetwithlog__updating_a_direct_reference_adds_a_reflog_entry
(
void
)
{
git_reference
*
reference
,
*
reference_out
;
git_oid
current_id
,
target_id
;
git_signature
*
signature
;
git_reflog
*
reflog
;
const
git_reflog_entry
*
entry
;
const
char
*
message
=
"You've been logged, mate!"
;
git_oid_fromstr
(
&
current_id
,
br2_tip
);
git_oid_fromstr
(
&
target_id
,
master_tip
);
cl_git_pass
(
git_reference_lookup
(
&
reference
,
g_repo
,
br2_name
));
cl_git_pass
(
git_signature_now
(
&
signature
,
"foo"
,
"foo@bar"
));
cl_git_pass
(
git_reference_set_target_with_log
(
&
reference_out
,
reference
,
&
target_id
,
signature
,
message
));
cl_git_pass
(
git_reflog_read
(
&
reflog
,
reference_out
));
entry
=
git_reflog_entry_byindex
(
reflog
,
0
);
cl_assert
(
git_oid_cmp
(
&
current_id
,
&
entry
->
oid_old
)
==
0
);
cl_assert
(
git_oid_cmp
(
&
target_id
,
&
entry
->
oid_cur
)
==
0
);
cl_assert_equal_s
(
message
,
entry
->
msg
);
git_reflog_free
(
reflog
);
git_reference_free
(
reference_out
);
git_reference_free
(
reference
);
git_signature_free
(
signature
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment