Lines Matching full:path

27  * The 'path' argument must point to either a git repository
30 * The method will automatically detect if 'path' is a normal
31 * or bare repository or fail is 'path' is neither.
34 * @param path the path to the repository
37 GIT_EXTERN(int) git_repository_open(git_repository **out, const char *path);
64 * Look for a git repository and copy its path in the given buffer.
74 * the found path.
76 * @param start_path The base path where the lookup starts.
133 * the `ceiling_dirs` argument, and will allow a NULL `path` to use
152 * see if a repo at this path could be opened.
153 * @param path Path to open as git repository. If the flags
154 * permit "searching", then this can be a path to a subdirectory
158 * @param ceiling_dirs A GIT_PATH_LIST_SEPARATOR delimited list of path
167 const char *path,
179 * @param bare_path Direct path to the bare repository
204 * @param path the path to the repository
206 * created at the pointed path. If false, provided path will be
214 const char *path,
229 * path for non-bare repos (if it is not already there), but
283 * * workdir_path - The path to the working dir or NULL for default (i.e.
284 * repo_path parent on non-bare repos). IF THIS IS RELATIVE PATH,
291 * this contains the path to use for the template directory. If
339 * @param repo_path The path to the repository.
448 * This function will retrieve the path of a specific repository
450 * common directory, gitdir, etc. In case a file path cannot
454 * @param out Buffer to store the path at
455 * @param repo Repository to get path for
456 * @param item The repository item for which to retrieve the path
457 * @return 0, GIT_ENOTFOUND if the path cannot exist or an error code
462 * Get the path of this repository
464 * This is the path of the `.git` folder for normal repositories,
468 * @return the path to the repository
473 * Get the path of the working directory for this repository
479 * @return the path to the working dir, if it exists
484 * Get the path of the shared common directory for this repository.
491 * @return the path to the common dir
496 * Set the path to the working directory for this repository
507 * @param workdir The path to a working directory
722 * @param path Path to file on disk whose contents should be hashed. If the
723 * repository is not NULL, this can be a relative path.
725 * @param as_path The path to use to look up filtering rules. If this is
726 * NULL, then the `path` parameter will be used instead. If
734 const char *path,