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
94161115
Commit
94161115
authored
Jun 21, 2012
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clone: minor cleanup and whitespace.
parent
af58ec9e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
src/clone.c
+1
-1
tests-clar/clone/clone.c
+10
-2
No files found.
src/clone.c
View file @
94161115
...
@@ -93,7 +93,7 @@ static int update_head_to_new_branch(git_repository *repo, git_oid *target, cons
...
@@ -93,7 +93,7 @@ static int update_head_to_new_branch(git_repository *repo, git_oid *target, cons
if
(
!
create_tracking_branch
(
repo
,
target
,
name
))
{
if
(
!
create_tracking_branch
(
repo
,
target
,
name
))
{
git_reference
*
head
;
git_reference
*
head
;
if
(
!
git_re
ference_lookup
(
&
head
,
repo
,
"HEAD"
))
{
if
(
!
git_re
pository_head
(
&
head
,
repo
))
{
git_buf
target
=
GIT_BUF_INIT
;
git_buf
target
=
GIT_BUF_INIT
;
if
(
!
git_buf_printf
(
&
target
,
"refs/heads/%s"
,
name
)
&&
if
(
!
git_buf_printf
(
&
target
,
"refs/heads/%s"
,
name
)
&&
!
git_reference_set_target
(
head
,
git_buf_cstr
(
&
target
)))
{
!
git_reference_set_target
(
head
,
git_buf_cstr
(
&
target
)))
{
...
...
tests-clar/clone/clone.c
View file @
94161115
...
@@ -89,9 +89,13 @@ void test_clone_clone__local(void)
...
@@ -89,9 +89,13 @@ void test_clone_clone__local(void)
void
test_clone_clone__network_full
(
void
)
void
test_clone_clone__network_full
(
void
)
{
{
#if 0
#if 0
git_remote *origin;
cl_git_pass(git_clone(&g_repo,
cl_git_pass(git_clone(&g_repo,
"https://github.com/libgit2/libgit2
.git",
"https://github.com/libgit2/GitForDelphi
.git",
"./libgit2", NULL));
"./libgit2", NULL));
cl_assert(!git_repository_is_bare(g_repo));
cl_git_pass(git_remote_load(&origin, g_repo, "origin"));
git_futils_rmdir_r("./libgit2", GIT_DIRREMOVAL_FILES_AND_DIRS);
git_futils_rmdir_r("./libgit2", GIT_DIRREMOVAL_FILES_AND_DIRS);
#endif
#endif
}
}
...
@@ -99,9 +103,13 @@ void test_clone_clone__network_full(void)
...
@@ -99,9 +103,13 @@ void test_clone_clone__network_full(void)
void
test_clone_clone__network_bare
(
void
)
void
test_clone_clone__network_bare
(
void
)
{
{
#if 0
#if 0
git_remote *origin;
cl_git_pass(git_clone_bare(&g_repo,
cl_git_pass(git_clone_bare(&g_repo,
"https://github.com/libgit2/libgit2
.git",
"https://github.com/libgit2/GitForDelphi
.git",
"./libgit2.git", NULL));
"./libgit2.git", NULL));
cl_assert(git_repository_is_bare(g_repo));
cl_git_pass(git_remote_load(&origin, g_repo, "origin"));
git_futils_rmdir_r("./libgit2.git", GIT_DIRREMOVAL_FILES_AND_DIRS);
git_futils_rmdir_r("./libgit2.git", GIT_DIRREMOVAL_FILES_AND_DIRS);
#endif
#endif
}
}
...
...
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