X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fbb%2Ffetch%2Fgit.py;h=49235c141e1624cb9f464483ec22f46b0f3fbb7e;hb=016d87b9035ddd1ff99ebf84ed67f3ec817c0608;hp=f30ae2360aef8ff0a571774e635492722ffcd234;hpb=83b652ff904ee0edd8cef15ad51e9853eeb6dee8;p=vuplus_bitbake diff --git a/lib/bb/fetch/git.py b/lib/bb/fetch/git.py index f30ae23..49235c1 100644 --- a/lib/bb/fetch/git.py +++ b/lib/bb/fetch/git.py @@ -129,7 +129,7 @@ class Git(Fetch): os.chdir(repodir) rungitcmd("tar -xzf %s" % (repofile),d) else: - rungitcmd("git clone %s://%s%s %s" % (proto, host, path, repodir),d) + rungitcmd("git clone -n %s://%s%s %s" % (proto, host, path, repodir),d) os.chdir(repodir) rungitcmd("git pull %s://%s%s" % (proto, host, path),d)