diff options
author | Vicent Martà <vicent@github.com> | 2013-09-17 03:45:35 -0700 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-09-17 03:45:35 -0700 |
commit | efc9e6700fabc91ea490fcc5ea034b51648c9e88 (patch) | |
tree | 08f13e7c4f17a3e35f7342d51363441833ac59f4 /src/submodule.c | |
parent | 38fba8371e4c6c0042645a8bf2ba4aa2f2cdf730 (diff) | |
parent | 605da51a2cfd86901b6fa5f9cf71111a63ab4418 (diff) | |
download | libgit2-efc9e6700fabc91ea490fcc5ea034b51648c9e88.tar.gz |
Merge pull request #1856 from libgit2/cmn/no-orphans
No such thing as an orphan branch
Diffstat (limited to 'src/submodule.c')
-rw-r--r-- | src/submodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/submodule.c b/src/submodule.c index 40bda9a41..121383b9c 100644 --- a/src/submodule.c +++ b/src/submodule.c @@ -1557,7 +1557,7 @@ static void submodule_get_wd_status( if (ign == GIT_SUBMODULE_IGNORE_NONE) opt.flags |= GIT_DIFF_INCLUDE_UNTRACKED; - /* if we don't have an orphaned head, check diff with index */ + /* if we don't have an unborn head, check diff with index */ if (git_repository_head_tree(&sm_head, sm_repo) < 0) giterr_clear(); else { |