summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-09-26 15:17:45 +0200
committerMichał Górny <mgorny@gentoo.org>2015-11-29 11:03:17 +0100
commitd9d782110a25eeed271169a2f35ef6ee294452c8 (patch)
tree4623d14bb8522615f0f91f15199d3625cf1309ee /eclass/git-r3.eclass
parentversion bump (diff)
downloadgentoo-d9d782110a25eeed271169a2f35ef6ee294452c8.tar.gz
gentoo-d9d782110a25eeed271169a2f35ef6ee294452c8.tar.bz2
gentoo-d9d782110a25eeed271169a2f35ef6ee294452c8.zip
git-r3.eclass: Improve the comments a bit
Diffstat (limited to 'eclass/git-r3.eclass')
-rw-r--r--eclass/git-r3.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass
index 79aa844054f7..2a609670516c 100644
--- a/eclass/git-r3.eclass
+++ b/eclass/git-r3.eclass
@@ -585,7 +585,7 @@ git-r3_fetch() {
# regular branch
fetch_l=${remote_ref}
else
- # tag or commit...
+ # tag or commit id...
# let ls-remote figure it out
local tagref=$(git ls-remote "${r}" "refs/tags/${remote_ref}")
@@ -594,8 +594,8 @@ git-r3_fetch() {
# tag
fetch_l=refs/tags/${remote_ref}
else
- # commit
- # so we need to fetch the branch
+ # commit id
+ # so we need to fetch the whole branch
if [[ ${branch} ]]; then
fetch_l=${branch}
else
@@ -697,7 +697,7 @@ git-r3_fetch() {
[[ ${success} ]] || die "Unable to fetch from any of EGIT_REPO_URI"
# submodules can reference commits in any branch
- # always use the 'clone' mode to accomodate that, bug #503332
+ # always use the 'mirror' mode to accomodate that, bug #503332
local EGIT_CLONE_TYPE=mirror
# recursively fetch submodules