mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-11 08:35:18 +00:00
Fix clone.c's indentation
This commit is contained in:
parent
7635a1188a
commit
9c3a98f1b0
20
src/clone.c
20
src/clone.c
@ -337,10 +337,11 @@ static int clone_internal(
|
||||
return retcode;
|
||||
}
|
||||
|
||||
int git_clone_bare(git_repository **out,
|
||||
const char *origin_url,
|
||||
const char *dest_path,
|
||||
git_indexer_stats *fetch_stats)
|
||||
int git_clone_bare(
|
||||
git_repository **out,
|
||||
const char *origin_url,
|
||||
const char *dest_path,
|
||||
git_indexer_stats *fetch_stats)
|
||||
{
|
||||
assert(out && origin_url && dest_path);
|
||||
|
||||
@ -354,11 +355,12 @@ int git_clone_bare(git_repository **out,
|
||||
}
|
||||
|
||||
|
||||
int git_clone(git_repository **out,
|
||||
const char *origin_url,
|
||||
const char *workdir_path,
|
||||
git_indexer_stats *fetch_stats,
|
||||
git_checkout_opts *checkout_opts)
|
||||
int git_clone(
|
||||
git_repository **out,
|
||||
const char *origin_url,
|
||||
const char *workdir_path,
|
||||
git_indexer_stats *fetch_stats,
|
||||
git_checkout_opts *checkout_opts)
|
||||
{
|
||||
assert(out && origin_url && workdir_path);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user