]> git.proxmox.com Git - libgit2.git/commitdiff
Clone: fix indentation
authorBen Straub <bs@github.com>
Tue, 16 Oct 2012 19:41:20 +0000 (12:41 -0700)
committerBen Straub <bs@github.com>
Sat, 20 Oct 2012 02:34:14 +0000 (19:34 -0700)
include/git2/clone.h

index c4dfc652ba6f6cbe1b8f83e6f7977a85d6becab4..c34a9ae6ae4f0cba3694e9f5507dc6b502947f11 100644 (file)
@@ -36,12 +36,13 @@ GIT_BEGIN_DECL
  * @return 0 on success, GIT_ERROR otherwise (use giterr_last for information
  * about the error)
  */
-GIT_EXTERN(int) git_clone(git_repository **out,
-                                                                 const char *origin_url,
-                                                                 const char *workdir_path,
-                                                                 git_indexer_stats *fetch_stats,
-                                                                 git_indexer_stats *checkout_stats,
-                                                                 git_checkout_opts *checkout_opts);
+GIT_EXTERN(int) git_clone(
+               git_repository **out,
+               const char *origin_url,
+               const char *workdir_path,
+               git_indexer_stats *fetch_stats,
+               git_indexer_stats *checkout_stats,
+               git_checkout_opts *checkout_opts);
 
 /**
  * Create a bare clone of a remote repository.
@@ -52,10 +53,11 @@ GIT_EXTERN(int) git_clone(git_repository **out,
  * @param fetch_stats pointer to structure that receives fetch progress information (may be NULL)
  * @return 0 on success, GIT_ERROR otherwise (use giterr_last for information about the error)
  */
-GIT_EXTERN(int) git_clone_bare(git_repository **out,
-                                                                                const char *origin_url,
-                                                                                const char *dest_path,
-                                                                                git_indexer_stats *fetch_stats);
+GIT_EXTERN(int) git_clone_bare(
+               git_repository **out,
+               const char *origin_url,
+               const char *dest_path,
+               git_indexer_stats *fetch_stats);
 
 /** @} */
 GIT_END_DECL