From 6d9c52fe4b6c8789bb81bbc469c9f418edaef244 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Mon, 15 Aug 2016 15:19:44 +0300 Subject: oeqa.utils.git: implement init() method Method for doing 'git init'. (From OE-Core rev: c848e1dac68cd859a563a82286f8bc5ddabaa423) Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oeqa/utils/git.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'meta/lib/oeqa') 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 -- cgit 1.2.3-korg