Skip to content

Commit

Permalink
Merge branch 'pt/enter-repo-comment-fix'
Browse files Browse the repository at this point in the history
* pt/enter-repo-comment-fix:
  enter_repo(): fix docs to match code
  • Loading branch information
Junio C Hamano committed Apr 14, 2015
2 parents 03571fd + c8c3f1d commit bf2cfca
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions path.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,14 +303,9 @@ char *expand_user_path(const char *path)
* (3) "relative/path" to mean cwd relative directory; or
* (4) "/absolute/path" to mean absolute directory.
*
* Unless "strict" is given, we try access() for existence of "%s.git/.git",
* "%s/.git", "%s.git", "%s" in this order. The first one that exists is
* what we try.
*
* Second, we try chdir() to that. Upon failure, we return NULL.
*
* Then, we try if the current directory is a valid git repository.
* Upon failure, we return NULL.
* Unless "strict" is given, we check "%s/.git", "%s", "%s.git/.git", "%s.git"
* in this order. We select the first one that is a valid git repository, and
* chdir() to it. If none match, or we fail to chdir, we return NULL.
*
* If all goes well, we return the directory we used to chdir() (but
* before ~user is expanded), avoiding getcwd() resolving symbolic
Expand Down

0 comments on commit bf2cfca

Please sign in to comment.