summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index 6175e4c7c9..989d72cb31 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -305,8 +305,8 @@ class Git(FetchMethod):
305 username = "" 305 username = ""
306 306
307 basecmd = data.getVar("FETCHCMD_git", d, True) or "git" 307 basecmd = data.getVar("FETCHCMD_git", d, True) or "git"
308 cmd = "%s ls-remote %s://%s%s%s %s" % \ 308 cmd = "%s ls-remote %s://%s%s%s refs/heads/%s refs/tags/%s" % \
309 (basecmd, ud.proto, username, ud.host, ud.path, ud.branches[name]) 309 (basecmd, ud.proto, username, ud.host, ud.path, ud.branches[name], ud.branches[name])
310 if ud.proto.lower() != 'file': 310 if ud.proto.lower() != 'file':
311 bb.fetch2.check_network_access(d, cmd) 311 bb.fetch2.check_network_access(d, cmd)
312 output = runfetchcmd(cmd, d, True) 312 output = runfetchcmd(cmd, d, True)