-
Notifications
You must be signed in to change notification settings - Fork 14.2k
/
Copy pathgit.py
135 lines (90 loc) · 3.76 KB
/
git.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""
Auxiliary function to interact with git.
"""
import os
from runtime import repo_dir, execute, cmd
push_remote_name = os.environ.get("PUSH_REMOTE_NAME", "apache-github")
def __defaults(kwargs):
if "cwd" not in kwargs:
kwargs["cwd"] = repo_dir
def has_staged_changes(**kwargs):
__defaults(kwargs)
execute("git diff --cached --exit-code --quiet", **kwargs)
def has_unstaged_changes(**kwargs):
__defaults(kwargs)
execute("git diff --exit-code --quiet", **kwargs)
def fetch_tags(remote=push_remote_name, **kwargs):
__defaults(kwargs)
cmd(f"Fetching tags from {remote}", f"git fetch --tags {remote}", **kwargs)
def tags(**kwargs):
__defaults(kwargs)
return execute("git tag", **kwargs).split()
def tag_exists(tag, **kwargs):
__defaults(kwargs)
return tag in tags(**kwargs)
def delete_tag(tag, **kwargs):
__defaults(kwargs)
if tag_exists(tag, **kwargs):
execute(f"git tag -d {tag}", **kwargs)
def current_branch(**kwargs):
__defaults(kwargs)
return execute("git rev-parse --abbrev-ref HEAD", **kwargs)
def reset_hard_head(**kwargs):
__defaults(kwargs)
cmd("Resetting branch", "git reset --hard HEAD", **kwargs)
def contributors(from_rev, to_rev, **kwargs):
__defaults(kwargs)
kwargs["shell"] = True
line = "git shortlog -sn --group=author --group=trailer:co-authored-by"
line += f" --group=trailer:Reviewers --no-merges {from_rev}..{to_rev}"
line += " | cut -f2 | sort --ignore-case | uniq"
return [str(x) for x in filter(None, execute(line, **kwargs).split('\n'))]
def branches(**kwargs):
output = execute('git branch')
return [line.replace('*', ' ').strip() for line in output.splitlines()]
def branch_exists(branch, **kwargs):
__defaults(kwargs)
return branch in branches(**kwargs)
def delete_branch(branch, **kwargs):
__defaults(kwargs)
if branch_exists(branch, **kwargs):
cmd(f"Deleting git branch {branch}", f"git branch -D {branch}", **kwargs)
def switch_branch(branch, **kwargs):
__defaults(kwargs)
execute(f"git checkout {branch}", **kwargs)
def create_branch(branch, ref, **kwargs):
__defaults(kwargs)
cmd(f"Creating git branch {branch} to track {ref}", f"git checkout -b {branch} {ref}", **kwargs)
def clone(url, target, **kwargs):
__defaults(kwargs)
execute(f"git clone {url} {target}", **kwargs)
def targz(rev, prefix, target, **kwargs):
__defaults(kwargs)
line = "git archive --format tar.gz"
line += f" --prefix {prefix} --output {target} {rev}"
cmd(f"Creating targz {target} from git rev {rev}", line, **kwargs)
def commit(message, **kwargs):
__defaults(kwargs)
cmd("Committing git changes", ["git", "commit", "-a", "-m", message], **kwargs)
def create_tag(tag, **kwargs):
__defaults(kwargs)
cmd(f"Creating git tag {tag}", ["git", "tag", "-a", tag, "-m", tag], **kwargs)
def push_tag(tag, remote=push_remote_name, **kwargs):
__defaults(kwargs)
cmd("Pushing tag {tag} to {remote}", f"git push {remote} {tag}")