From: Markus Lehtonen Date: Mon, 15 Aug 2016 12:19:44 +0000 (+0300) Subject: oeqa.utils.git: implement init() method X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24522 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c848e1dac68cd859a563a82286f8bc5ddabaa423;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oeqa.utils.git: implement init() method Method for doing 'git init'. Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- diff --git a/meta/lib/oeqa/utils/git.py b/meta/lib/oeqa/utils/git.py index ca84680118c..ae85d276637 100644 --- a/meta/lib/oeqa/utils/git.py +++ b/meta/lib/oeqa/utils/git.py @@ -35,6 +35,12 @@ class GitRepo(object): cmd_str, ret.status, ret.output)) return ret.output.strip() + @staticmethod + def init(path): + """Initialize a new Git repository""" + GitRepo._run_git_cmd_at('init', cwd=path) + return GitRepo(path, is_topdir=True) + def run_cmd(self, git_args, env_update=None): """Run Git command""" env = None