summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py
index c26ee3fff3..cdd5a1090c 100644
--- a/bitbake/lib/bb/fetch/git.py
+++ b/bitbake/lib/bb/fetch/git.py
@@ -92,7 +92,7 @@ class Git(Fetch):
92 os.chdir(repodir) 92 os.chdir(repodir)
93 # Remove all but the .git directory 93 # Remove all but the .git directory
94 runfetchcmd("rm * -Rf", d) 94 runfetchcmd("rm * -Rf", d)
95 runfetchcmd("git pull %s://%s%s" % (ud.proto, ud.host, ud.path), d) 95 runfetchcmd("git fetch %s://%s%s" % (ud.proto, ud.host, ud.path), d)
96 runfetchcmd("git pull --tags %s://%s%s" % (ud.proto, ud.host, ud.path), d) 96 runfetchcmd("git pull --tags %s://%s%s" % (ud.proto, ud.host, ud.path), d)
97 runfetchcmd("git prune-packed", d) 97 runfetchcmd("git prune-packed", d)
98 runfetchcmd("git pack-redundant --all | xargs -r rm", d) 98 runfetchcmd("git pack-redundant --all | xargs -r rm", d)