Lines Matching full:git
20 repourl = "https://gitlab.com/%s/%s.git" % (namespace, reponame)
22 print(f"adding upstream git repo @ {repourl}")
23 subprocess.check_call(["git", "remote", "add", "check-dco", repourl])
24 subprocess.check_call(["git", "fetch", "--refetch", "check-dco", "master"])
26 ancestor = subprocess.check_output(["git", "merge-base",
32 subprocess.check_call(["git", "remote", "rm", "check-dco"])
39 log = subprocess.check_output(["git", "log", "--format=%H %s",
50 msg = subprocess.check_output(["git", "show", "-s", sha],
86 This can be achieved by passing the "-s" flag to the "git commit" command.
88 To bulk update all commits on current branch "git rebase" can be used:
90 git rebase -i master -x 'git commit --amend --no-edit -s'