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
d4827081
Commit
d4827081
authored
Jun 21, 2012
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branch: drop git_branch_list()
parent
a8fd805e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
145 deletions
+0
-145
include/git2/branch.h
+0
-24
src/branch.c
+0
-43
tests-clar/refs/branches/listall.c
+0
-78
No files found.
include/git2/branch.h
View file @
d4827081
...
...
@@ -72,30 +72,6 @@ GIT_EXTERN(int) git_branch_delete(
git_branch_t
branch_type
);
/**
* Fill a list with all the branches in the Repository
*
* The string array will be filled with the names of the
* matching branches; these values are owned by the user and
* should be free'd manually when no longer needed, using
* `git_strarray_free`.
*
* @param branch_names Pointer to a git_strarray structure
* where the branch names will be stored.
*
* @param repo Repository where to find the branches.
*
* @param list_flags Filtering flags for the branch
* listing. Valid values are GIT_BRANCH_LOCAL, GIT_BRANCH_REMOTE
* or a combination of the two.
*
* @return 0 or an error code.
*/
GIT_EXTERN
(
int
)
git_branch_list
(
git_strarray
*
branch_names
,
git_repository
*
repo
,
unsigned
int
list_flags
);
/**
* Loop over all the branches and issue a callback for each one.
*
* @param repo Repository where to find the branches.
...
...
src/branch.c
View file @
d4827081
...
...
@@ -141,49 +141,6 @@ on_error:
}
typedef
struct
{
git_vector
*
branchlist
;
unsigned
int
branch_type
;
}
branch_filter_data
;
static
int
branch_list_cb
(
const
char
*
branch_name
,
void
*
payload
)
{
branch_filter_data
*
filter
=
(
branch_filter_data
*
)
payload
;
if
(
filter
->
branch_type
&
GIT_BRANCH_LOCAL
&&
git__prefixcmp
(
branch_name
,
GIT_REFS_HEADS_DIR
)
==
0
)
{
return
git_vector_insert
(
filter
->
branchlist
,
git__strdup
(
branch_name
+
strlen
(
GIT_REFS_HEADS_DIR
)));
}
else
if
(
filter
->
branch_type
&
GIT_BRANCH_REMOTE
&&
git__prefixcmp
(
branch_name
,
GIT_REFS_REMOTES_DIR
)
==
0
)
{
return
git_vector_insert
(
filter
->
branchlist
,
git__strdup
(
branch_name
+
strlen
(
GIT_REFS_DIR
)));
}
return
0
;
}
int
git_branch_list
(
git_strarray
*
branch_names
,
git_repository
*
repo
,
unsigned
int
list_flags
)
{
int
error
;
branch_filter_data
filter
;
git_vector
branchlist
;
assert
(
branch_names
&&
repo
);
if
(
git_vector_init
(
&
branchlist
,
8
,
NULL
)
<
0
)
return
-
1
;
filter
.
branchlist
=
&
branchlist
;
filter
.
branch_type
=
list_flags
;
error
=
git_reference_foreach
(
repo
,
GIT_REF_LISTALL
,
&
branch_list_cb
,
(
void
*
)
&
filter
);
if
(
error
<
0
)
{
git_vector_free
(
&
branchlist
);
return
-
1
;
}
branch_names
->
strings
=
(
char
**
)
branchlist
.
contents
;
branch_names
->
count
=
branchlist
.
length
;
return
0
;
}
typedef
struct
{
int
(
*
branch_cb
)(
const
char
*
branch_name
,
git_branch_t
branch_type
,
...
...
tests-clar/refs/branches/listall.c
deleted
100644 → 0
View file @
a8fd805e
#include "clar_libgit2.h"
#include "refs.h"
#include "branch.h"
static
git_repository
*
repo
;
static
git_strarray
branch_list
;
static
git_reference
*
fake_remote
;
void
test_refs_branches_listall__initialize
(
void
)
{
git_oid
id
;
cl_fixture_sandbox
(
"testrepo.git"
);
cl_git_pass
(
git_repository_open
(
&
repo
,
"testrepo.git"
));
cl_git_pass
(
git_oid_fromstr
(
&
id
,
"be3563ae3f795b2b4353bcce3a527ad0a4f7f644"
));
cl_git_pass
(
git_reference_create_oid
(
&
fake_remote
,
repo
,
"refs/remotes/nulltoken/master"
,
&
id
,
0
));
}
void
test_refs_branches_listall__cleanup
(
void
)
{
git_strarray_free
(
&
branch_list
);
git_reference_free
(
fake_remote
);
git_repository_free
(
repo
);
cl_fixture_cleanup
(
"testrepo.git"
);
}
static
void
assert_retrieval
(
unsigned
int
flags
,
unsigned
int
expected_count
)
{
cl_git_pass
(
git_branch_list
(
&
branch_list
,
repo
,
flags
));
cl_assert_equal_i
(
branch_list
.
count
,
expected_count
);
}
void
test_refs_branches_listall__retrieve_all_branches
(
void
)
{
assert_retrieval
(
GIT_BRANCH_LOCAL
|
GIT_BRANCH_REMOTE
,
9
);
}
void
test_refs_branches_listall__retrieve_remote_branches
(
void
)
{
assert_retrieval
(
GIT_BRANCH_REMOTE
,
2
);
}
void
test_refs_branches_listall__retrieve_local_branches
(
void
)
{
assert_retrieval
(
GIT_BRANCH_LOCAL
,
7
);
}
static
void
assert_branch_list_contains
(
git_strarray
*
branches
,
const
char
*
expected_branch_name
)
{
unsigned
int
i
;
for
(
i
=
0
;
i
<
branches
->
count
;
i
++
)
{
if
(
strcmp
(
expected_branch_name
,
branches
->
strings
[
i
])
==
0
)
return
;
}
cl_fail
(
"expected branch not found in list."
);
}
/*
* $ git branch -r
* nulltoken/HEAD -> nulltoken/master
* nulltoken/master
*/
void
test_refs_branches_listall__retrieve_remote_symbolic_HEAD_when_present
(
void
)
{
git_reference_free
(
fake_remote
);
cl_git_pass
(
git_reference_create_symbolic
(
&
fake_remote
,
repo
,
"refs/remotes/nulltoken/HEAD"
,
"refs/remotes/nulltoken/master"
,
0
));
cl_git_pass
(
git_branch_list
(
&
branch_list
,
repo
,
GIT_BRANCH_REMOTE
));
cl_assert_equal_i
(
3
,
branch_list
.
count
);
assert_branch_list_contains
(
&
branch_list
,
"remotes/nulltoken/HEAD"
);
assert_branch_list_contains
(
&
branch_list
,
"remotes/nulltoken/master"
);
}
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