Commit 1c7eb971 by Ben Straub

Reindent.

parent 8fb5e403
......@@ -154,8 +154,6 @@ static int update_head_to_remote(git_repository *repo, git_remote *remote)
/*
* submodules?
* filemodes?
* Line endings
*/
......
......@@ -91,12 +91,10 @@ void test_clone_clone__network_full(void)
#if 0
git_remote *origin;
cl_git_pass(git_clone(&g_repo,
"https://github.com/libgit2/GitForDelphi.git",
"./libgit2", NULL));
cl_git_pass(git_clone(&g_repo, "http://github.com/libgit2/node-gitteh", "./attr", 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("./attr", GIT_DIRREMOVAL_FILES_AND_DIRS);
#endif
}
......@@ -105,12 +103,10 @@ void test_clone_clone__network_bare(void)
#if 0
git_remote *origin;
cl_git_pass(git_clone_bare(&g_repo,
"https://github.com/libgit2/GitForDelphi.git",
"./libgit2.git", NULL));
cl_git_pass(git_clone_bare(&g_repo, "http://github.com/libgit2/node-gitteh", "attr", 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("./attr", GIT_DIRREMOVAL_FILES_AND_DIRS);
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment