From: Markus Lehtonen Date: Mon, 15 Aug 2016 12:19:44 +0000 (+0300) Subject: oeqa.utils.git: implement init() method X-Git-Tag: uninative-1.4~417 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c848e1dac68cd859a563a82286f8bc5ddabaa423;p=openembedded-core.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 ca84680118..ae85d27663 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