-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjit.py
218 lines (184 loc) · 4.79 KB
/
jit.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
import click
import git
import os
class Jit(object):
def __init__(self):
self.root = self.getRoot(os.getcwd())
self.root_files = []
if not self.root:
print "Could not find a root directory."
return
self.root_files = os.listdir(self.root)
return
def getRoot(self, dir):
"""
Recursively look for directory containing git repos
"""
if self.isRepo(dir):
return os.path.dirname(dir)
elif len(dir) <= 1:
return False
else:
return self.getRoot(os.path.dirname(dir))
def getRepoRoot(self, repo_name):
"""
Get root directory for specified repo.
"""
return self.root + '/' + repo_name
def getRepoName(self, repo):
"""
Find name for currently accessed repo.
"""
return os.path.basename(repo.working_dir)
def getRepos(self):
"""
Get list of all accessible repos (based on current path).
"""
repos = []
for dir in self.root_files:
dir_path = self.getRepoRoot(dir)
if self.isRepo(dir_path):
repos.append(git.Repo(dir_path))
return repos
def isRepo(self, dir_path):
"""
Determine whether current directory is a repository root.
"""
return os.path.isdir(dir_path + '/.git')
def getBranches(self, repo):
"""
Get list of branches for specified repository.
"""
branches = []
for branch in repo.branches:
if branch.name != 'master':
branches.append(branch)
return branches
def formatActiveBranchOutput(self, repo):
"""
Format name of current repo branch.
"""
return self.getRepoName(repo).ljust(35) + repo.active_branch.name
def getDirtyRepos(self):
"""
Get list of repos with uncommitted changes.
"""
return [repo for repo in self.getRepos() if repo.is_dirty()]
def findDirtyRepos(self, dirty_repos = None):
"""
Alert user of dirty repos.
"""
if dirty_repos is None:
dirty_repos = self.getDirtyRepos()
if dirty_repos:
print "Please commit or stash your changes in the following repos."
for repo in dirty_repos:
print self.formatActiveBranchOutput(repo)
return True
return False;
def getRelevantRepos(self, branch_name):
"""
Get repos with branch matching specified name.
"""
relevant_repos = []
for repo in self.getRepos():
for branch in repo.branches:
if branch.name == branch_name:
relevant_repos.append(repo)
return relevant_repos
def checkoutRelevantRepos(self, branch_name):
"""
Checkout repos with branch matching specified name.
"""
for repo in self.getRelevantRepos(branch_name):
repo.git.checkout(branch_name)
print self.formatActiveBranchOutput(repo)
def allToMaster(self):
"""
Checkout master on all repos.
"""
if not self.findDirtyRepos():
for repo in self.getRepos():
repo.heads.master.checkout()
def pullAll(self):
"""
Pull from remote on all repos.
"""
if not self.findDirtyRepos():
for repo in self.getRepos():
try:
repo.remotes.origin.pull()
click.echo("Pulled %s" % self.getRepoName(repo))
except:
click.echo("Could not pull %s" % self.getRepoName(repo))
def displayUserRepos(self):
"""
Print all local branch names on all repos.
"""
for repo in self.getRepos():
if (len(repo.branches) > 1):
print self.getRepoName(repo)
for branch in self.getBranches(repo):
print branch.name.ljust(5)
def displayCurrentBranches(self):
"""
Print current checked out branch on all repos.
"""
repos = self.getRepos()
for repo in repos:
print self.formatActiveBranchOutput(repo)
def displayDirtyRepos(self):
"""
Display all repos with uncommited changes on checked out branch.
"""
for repo in self.getDirtyRepos():
print self.formatActiveBranchOutput(repo)
def displayRelevantRepos(self, branch_name):
"""
Print name of all repos with specified branch name.
"""
for repo in self.getRelevantRepos(branch_name):
print self.formatActiveBranchOutput(repo)
@click.group()
def cli():
"""jit allows you to interact with all git repositories within a directory in bulk."""
pass
@cli.command()
def all():
"""Display all current branches."""
jit = Jit()
jit.displayCurrentBranches()
@cli.command()
def mine():
"""Display all branches for all repos."""
jit = Jit()
jit.displayUserRepos()
@cli.command()
def dirty():
"""Display all repos with uncommitted changes."""
jit = Jit()
jit.displayDirtyRepos()
@cli.command()
def master():
"""Checkout master branch on all repos."""
jit = Jit()
jit.allToMaster()
@cli.command()
def pull():
"""Pull from remote origin on all repos."""
jit = Jit()
jit.pullAll()
@click.command()
@click.argument('branch')
def show(branch):
"""Show all repos that contain specified branch name."""
jit = Jit()
jit.displayRelevantRepos(branch)
@click.command()
@click.argument('branch')
def co(branch):
"""Checkout specified branch in all repos where it exists."""
jit = Jit()
jit.checkoutRelevantRepos(branch)
cli.add_command(show)
cli.add_command(co)