Git.pm: Implement Git::exec_path()
[gitweb.git] / perl / Git.pm
index 8fff785e024f575c95778931361aad0eff38a349..5c5ae1246b717ad1bf6217254175111d4cc8b45a 100644 (file)
@@ -48,7 +48,7 @@ =head1 SYNOPSIS
 
 # Methods which can be called as standalone functions as well:
 @EXPORT_OK = qw(command command_oneline command_pipe command_noisy
-                hash_object);
+                exec_path hash_object);
 
 
 =head1 DESCRIPTION
@@ -288,6 +288,19 @@ sub command_noisy {
 }
 
 
+=item exec_path ()
+
+Return path to the git sub-command executables (the same as
+C<git --exec-path>). Useful mostly only internally.
+
+Implementation of this function is very fast; no external command calls
+are involved.
+
+=cut
+
+# Implemented in Git.xs.
+
+
 =item hash_object ( FILENAME [, TYPE ] )
 
 =item hash_object ( FILEHANDLE [, TYPE ] )