/usr/lib/python3/dist-packages/bloom/git.py is in python3-bloom 0.6.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 | # Software License Agreement (BSD License)
#
# Copyright (c) 2013, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of Willow Garage, Inc. nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
"""Advanced utilities for manipulating git repositories"""
from __future__ import print_function
import os
import functools
import shutil
import subprocess
import tempfile
from subprocess import PIPE
from subprocess import CalledProcessError
from pkg_resources import parse_version
from bloom.logging import debug
from bloom.logging import error
from bloom.logging import fmt
from bloom.logging import info
from bloom.logging import warning
from bloom.util import change_directory
from bloom.util import check_output
from bloom.util import execute_command
from bloom.util import get_git_clone_state
from bloom.util import get_git_clone_state_quiet
from bloom.util import pdb_hook
import bloom.util
class GitClone(object):
def __init__(self, directory=None, track_all=True):
self.disabled = get_git_clone_state()
self.disabled_quiet = get_git_clone_state_quiet()
if self.disabled:
if not self.disabled_quiet:
warning('Skipping transactional safety mechanism, be careful...')
return
self.tmp_dir = None
self.directory = directory if directory is not None else os.getcwd()
if get_root(directory) is None:
raise RuntimeError("Provided directory, '" + str(directory) +
"', is not a git repository")
self.track_all = track_all
if self.track_all:
track_branches(directory=directory)
self.current_branches = get_branches()
self.tmp_dir = tempfile.mkdtemp()
self.clone_dir = os.path.join(self.tmp_dir, 'clone')
self.repo_url = 'file://' + os.path.abspath(self.directory)
info(fmt("@!@{gf}+++@| Cloning working copy for safety"))
execute_command('git clone ' + self.repo_url + ' ' + self.clone_dir)
def __del__(self):
if self.disabled:
return
self.clean_up()
def __enter__(self):
if self.disabled:
return
current_branch = get_current_branch()
if current_branch is None:
warning("Could not determine current branch, changing to the bloom branch")
execute_command('git checkout bloom')
self.orig_cwd = os.getcwd()
os.chdir(self.clone_dir)
if self.track_all:
track_branches(directory=self.clone_dir)
return os.getcwd()
def __exit__(self, exc_type, exc_value, traceback):
if self.disabled:
return
os.chdir(self.orig_cwd)
def clean_up(self):
if self.disabled:
return
if self.tmp_dir is not None and os.path.exists(self.tmp_dir):
shutil.rmtree(self.tmp_dir)
self.tmp_dir = None
def commit(self):
if self.disabled:
return
info(fmt("@{bf}<==@| Command successful, committing changes to working copy"))
current_branch = get_current_branch()
if current_branch is None:
error("Could not determine current branch.", exit=True)
with inbranch(get_commit_hash(get_current_branch())):
with change_directory(self.clone_dir):
new_branches = get_branches()
for branch in self.current_branches:
if branch in new_branches:
new_branches.remove(branch)
for branch in get_branches(local_only=True):
if branch not in new_branches:
with inbranch(branch):
cmd = 'git pull --rebase origin ' + branch
execute_command(cmd)
execute_command('git push --all', silent=False)
try:
execute_command('git push --tags', silent=False)
except subprocess.CalledProcessError:
warning("Force pushing tags from clone to working repository, "
"you will have to force push back to origin...")
execute_command('git push --force --tags', silent=False)
self.clean_up()
def ls_tree(reference, path=None, directory=None):
"""
Returns a dictionary of files and folders for a given reference and path.
Implemented using ``git ls-tree``. If an invalid reference and/or path
None is returned.
:param reference: git reference to pull from (branch, tag, or commit)
:param path: tree to list
:param directory: directory in which to run this command
:returns: dict if a directory (or a reference) or None if it does not exist
:raises: subprocess.CalledProcessError if any git calls fail
:raises: RuntimeError if the output from git is not what we expected
"""
# Try to track the reference as a branch
track_branches(reference, directory=directory)
cmd = 'git ls-tree ' + reference
if path is not None and path != '':
cmd += ':' + path
retcode, out, err = execute_command(cmd, autofail=False, silent_error=True,
cwd=directory, return_io=True)
if retcode != 0:
return None
items = {}
for line in out.splitlines():
tokens = line.split()
if len(tokens) != 4:
return None
if tokens[1] not in ['blob', 'tree']:
raise RuntimeError("item not a blob or tree")
if tokens[3] in items:
raise RuntimeError("duplicate name in ls tree")
items[tokens[3]] = 'file' if tokens[1] == 'blob' else 'directory'
return items
def show(reference, path, directory=None):
"""
Interface to the git show command.
If path is a file that exists, a string will be returned which is the
contents of that file. If the path is a directory that exists, then a
dictionary is returned where the keys are items in the folder and the
value is either the string 'file' or 'directory'. If the path does not
exist then this returns None.
:param reference: git reference to pull from (branch, tag, or commit)
:param path: path to show or list
:param directory: directory in which to run this command
:returns: string if a file, dict if a directory, None if it does not exist
:raises: subprocess.CalledProcessError if any git calls fail
"""
# Check to see if this is a directory
dirs = ls_tree(reference, path, directory)
if dirs is not None:
return dirs
# Otherwise a file or does not exist, check for the file
cmd = 'git show {0}:{1}'.format(reference, path)
# Check to see if it is a directory
retcode, out, err = execute_command(cmd, autofail=False, silent_error=True,
cwd=directory, return_io=True)
if retcode != 0:
# Does not exist
return None
# It is a file that exists, return the output
return out
def ensure_clean_working_env(force=False, git_status=True, directory=None):
"""
Checks the environment to ensure it is clean, raises SystemExit otherwise.
Clean is defined as:
- In a git repository
- In a valid branch (force overrides)
- Does not have local changes (force overrides)
- Does not have untracked files (force overrides)
:param force: If True, overrides a few of the fail conditions
:param directory: directory in which to run this command
:raises: subprocess.CalledProcessError if any git calls fail
:raises: SystemExit if any git calls fail
"""
def ecwe_fail(code, show_git_status):
if not bloom.util._quiet and show_git_status:
info('\n++ git status:\n', use_prefix=False)
os.system('git status')
error(code, exit=True)
# Is it a git repo
if get_root(directory) is None:
error("Not in a valid git repository", exit=True)
# Are we on a branch?
current_branch = get_current_branch(directory)
if current_branch is None:
msg = "Could not determine current branch"
if not force:
return ecwe_fail(msg, git_status)
else:
warning(msg)
# Are there local changes?
if has_changes(directory):
msg = "Current git working branch has local changes"
if not force:
return ecwe_fail(msg, git_status)
else:
warning(msg)
# Are there untracked files or directories?
if has_untracked_files(directory):
msg = "Current git working branch has untracked files/directories"
if not force:
return ecwe_fail(msg, git_status)
else:
warning(msg)
def checkout(reference, raise_exc=False, directory=None, show_git_status=True):
"""
Returns True if the checkout to a the reference was successful, else False
:param reference: branch, tag, or commit hash to checkout to
:param directory: directory in which to run this command
:returns: True if the checkout was successful, else False
"""
def checkout_summarize(fail_msg, branch, directory):
branch = '(no branch)' if branch is None else branch
directory = os.getcwd() if directory is None else directory
error("Failed to checkout to '{0}'".format(str(reference)) +
" because the working directory {0}".format(str(fail_msg)))
debug(" Working directory: '{0}'".format(str(directory)))
debug(" Working branch: '{0}'".format(str(branch)))
debug(" Has local changes: '{0}'".format(str(changes)))
debug(" Has untrakced files: '{0}'".format(str(untracked)))
pdb_hook()
if not bloom.util._quiet and show_git_status:
info('\n++ git status:\n', use_prefix=False)
os.system('git status')
return False
debug("Checking out to " + str(reference))
if reference == get_current_branch(directory):
debug("Requested checkout reference is the same as the current branch")
return True
fail_msg = ''
git_root = get_root(directory)
if git_root is not None:
changes = has_changes(directory)
untracked = has_untracked_files(directory)
branch = get_current_branch(directory) or 'could not determine branch'
else:
fail_msg = "is not a git repository"
if fail_msg == '' and changes:
fail_msg = "has local changes"
if fail_msg == '' and untracked:
fail_msg = "has untracked files"
try:
if not changes and not untracked:
execute_command('git checkout "{0}"'.format(str(reference)),
cwd=directory)
except CalledProcessError as err:
fail_msg = "CalledProcessError: " + str(err)
if raise_exc:
checkout_summarize(fail_msg, branch, directory)
raise
if fail_msg != '':
return checkout_summarize(fail_msg, branch, directory)
else:
return True
class ContextDecorator(object):
def __call__(self, f):
@functools.wraps(f)
def decorated(*args, **kwds):
with self:
return f(*args, **kwds)
return decorated
class inbranch(ContextDecorator):
"""
Safely switches to a given branch on entry and switches back on exit.
Combination decorator/context manager, therefore it can be used like:
@inbranch('some_git_branch')
def foo():
pass
Or in conjunction with the 'with' statement:
with inbranch('some_git_branch'):
foo()
:param branch_name: name of the branch to switch to
:param directory: directory in which to run the branch change
:raises: subprocess.CalledProcessError if either 'git checkout' call fails
"""
def __init__(self, branch, directory=None):
self.branch = branch
self.directory = directory
def __enter__(self):
self.current_branch = get_current_branch(self.directory)
checkout(self.branch, raise_exc=True, directory=self.directory)
def __exit__(self, exc_type, exc_value, traceback):
if self.current_branch is not None:
checkout(self.current_branch, raise_exc=True, directory=self.directory)
else:
warning("Could not determine branch to return to.")
def get_commit_hash(reference, directory=None):
"""
Returns the SHA-1 commit hash for the given reference.
:param reference: any git reference (branch or tag) to resolve to SHA-1
:param directory: directory in which to preform this action
:returns: SHA-1 commit hash for the given reference
:raises: subprocess.CalledProcessError if any git calls fail
"""
# Track remote branch
if branch_exists(reference, local_only=False, directory=directory):
if not branch_exists(reference, local_only=True, directory=directory):
track_branches(reference, directory)
cmd = 'git show-branch --sha1-name ' + reference
out = check_output(cmd, shell=True, cwd=directory)
return out.split('[')[1].split(']')[0]
def has_untracked_files(directory=None):
"""
Returns True is the working branch has untracked files, False otherwise.
:param directory: directory in which to preform this action
:returns: True if there are untracked files (or dirs), otherwise False
:raises: subprocess.CalledProcessError if any git calls fail
"""
out = check_output('git status', shell=True, cwd=directory)
if '# Untracked files:' in out:
return True
return False
def has_changes(directory=None):
"""
Returns True if the working branch has local changes, False otherwise.
:param directory: directory in which to preform this action
:returns: True if there are local changes, otherwise False
:raises: subprocess.CalledProcessError if any git calls fail
"""
out = check_output('git status', shell=True, cwd=directory)
if 'nothing to commit (working directory clean)' in out:
return False
if 'nothing to commit, working directory clean' in out:
return False
if 'nothing to commit, working tree clean' in out:
return False
if 'nothing added to commit' in out:
return False
return True
def tag_exists(tag, directory=None):
"""
Returns True if the given tag exists, False otherwise
:param tag: tag to check for
:param directory: directory in which to preform this action
:returns: True if the given tag exists, False otherwise
:raises: subprocess.CalledProcessError if any git calls fail
"""
return tag in get_tags(directory)
def create_tag(tag, directory=None):
"""
Creates a given tag
:param tag: tag to create
:param directory: directory in which to preform this action
:raises: subprocess.CalledProcessError if any git calls fail
"""
execute_command('git tag {0}'.format(tag), shell=True, cwd=directory)
def delete_tag(tag, directory=None):
"""
Deletes a given local tag.
:param tag: local tag to delete
:param directory: directory in which to preform this action
:raises: subprocess.CalledProcessError if any git calls fail
"""
execute_command('git tag -d {0}'.format(tag), shell=True, cwd=directory)
def delete_remote_tag(tag, remote='origin', directory=None):
"""
Deletes a given remote tag.
:param tag: remote tag to delete
:param remote: git remote to delete tag from (defaults to 'origin')
:param directory: directory in which to preform this action
:raises: subprocess.CalledProcessError if any git calls fail
"""
execute_command('git push {0} :{1}'.format(remote, tag), shell=True,
cwd=directory)
def get_tags(directory=None):
"""
Returns a list of tags in the git repository.
:param directory: directory in which to preform this action
:returns: list of tags
:raises: subprocess.CalledProcessError if any git calls fail
"""
out = check_output('git tag -l', shell=True, cwd=directory)
return [l.strip() for l in out.splitlines()]
def branch_exists(branch_name, local_only=False, directory=None):
"""
Returns true if a given branch exists locally or remotelly
:param branch_name: name of the branch to look for
:param local_only: if True, only look at the local branches
:param directory: directory in which to run this command
:returns: True if the branch is in the list of branches from git
:raises: subprocess.CalledProcessError if any git calls fail
"""
for branch in get_branches(local_only, directory):
if branch.startswith('remotes/'):
branch = branch.split('/')
if len(branch) > 2:
branch = '/'.join(branch[2:])
if branch_name == branch:
return True
else:
if branch_name == branch:
return True
return False
def get_branches(local_only=False, directory=None):
"""
Returns a list of branches in the git repository.
:param local_only: if True, do not return remote branches, False by default
:param directory: directory in which to preform this action
:returns: list of branches
:raises: subprocess.CalledProcessError if any git calls fail
"""
cmd = 'git branch --no-color'
if not local_only:
cmd += ' -a'
out = check_output(cmd, shell=True, cwd=directory)
branches = []
for line in out.splitlines():
if line.count('HEAD -> ') > 0:
continue
if line.count('(no branch)') > 0:
continue
line = line.strip('*').strip()
branches.append(line)
return branches
def create_branch(branch, orphaned=False, changeto=False, directory=None):
"""
Creates a new branch in the current, or given, git repository.
If the specified branch already exists git will fail and a
subprocess.CalledProcessError will be raised.
:param branch: name of the new branch
:param orphaned: if True creates an orphaned branch
:param changeto: if True changes to the new branch after creation
:param directory: directory in which to preform this action
:raises: subprocess.CalledProcessError if any git calls fail
"""
current_branch = get_current_branch(directory)
try:
if orphaned:
execute_command('git symbolic-ref HEAD refs/heads/' + branch,
cwd=directory)
execute_command('rm -f .git/index', cwd=directory)
execute_command('git clean -fdx', cwd=directory)
cmd = 'git commit --allow-empty -m "Created orphaned branch '\
'{0}"'.format(branch)
execute_command(cmd, cwd=directory)
if changeto:
current_branch = None
else:
execute_command('git branch {0}'.format(branch), cwd=directory)
if changeto:
checkout(branch, directory=directory)
current_branch = None
finally:
if current_branch is not None:
checkout(current_branch, directory=directory)
def ensure_git_root():
"""
Checks that you are in the root of the git repository, else exit.
:raises: SystemExit if this is not a valid git repository.
:raises: SystemExit if not in the root of a git repository.
"""
root = get_root()
if root is None:
error("Not in a git repository.", exit=True)
if os.getcwd() != root:
error("Must call from the top folder of the git repository",
exit=True)
def get_root(directory=None):
"""
Returns the git root directory above the given dir.
If the given dir is not in a git repository, None is returned.
:param directory: directory to query from, if None the cwd is used
:returns: root of git repository or None if not a git repository
"""
cmd = 'git rev-parse --show-toplevel'
try:
output = check_output(cmd, shell=True, cwd=directory, stderr=PIPE)
except CalledProcessError:
return None
return output.strip()
def get_current_branch(directory=None):
"""
Returns the current git branch by parsing the output of `git branch`
This will raise a RuntimeError if the current working directory is not
a git repository. If no branch could be determined it will return None,
i.e. (no branch) will return None.
:param directory: directory in which to run the command
:returns: current git branch or None if none can be determined, (no branch)
:raises: subprocess.CalledProcessError if git command fails
"""
cmd = 'git branch --no-color'
output = check_output(cmd, shell=True, cwd=directory)
output = output.splitlines()
for token in output:
if token.strip().startswith('*'):
token = token[2:]
if token == '(no branch)':
return None
return token
return None
def track_branches(branches=None, directory=None):
"""
Tracks all specified branches.
:param branches: a list of branches that are to be tracked if not already
tracked. If this is set to None then all remote branches will be tracked.
:param directory: directory in which to run all commands
:raises: subprocess.CalledProcessError if git command fails
"""
if type(branches) == str:
branches = [branches]
debug("track_branches(" + str(branches) + ", " + str(directory) + ")")
if branches == []:
return
# Save the current branch
current_branch = get_current_branch(directory)
try:
# Get the local branches
local_branches = get_branches(local_only=True, directory=directory)
# Get the remote and local branches
all_branches = get_branches(local_only=False, directory=directory)
# Calculate the untracked branches
untracked_branches = []
for branch in all_branches:
if branch.startswith('remotes/'):
if branch.count('/') >= 2:
branch = '/'.join(branch.split('/')[2:])
if branch not in local_branches:
untracked_branches.append(branch)
# Prune any untracked branches by specified branches
if branches is not None:
branches_to_track = []
for untracked in untracked_branches:
if untracked in branches:
branches_to_track.append(untracked)
else:
branches_to_track = untracked_branches
# Track branches
debug("Tracking branches: " + str(branches_to_track))
for branch in branches_to_track:
checkout(branch, directory=directory)
finally:
if current_branch:
checkout(current_branch, directory=directory)
def get_last_tag_by_version(directory=None):
"""
Returns the most recent, by date, tag in the given local git repository.
:param directory: the directory in which to run the query
:returns: the most recent tag by date, else '' if there are no tags
:raises: subprocess.CalledProcessError if git command fails
"""
cmd = "git for-each-ref --sort='*authordate' " \
"--format='%(refname:short)' refs/tags/upstream"
output = check_output(cmd, shell=True, cwd=directory, stderr=PIPE)
tags = []
versions = []
for line in output.splitlines():
tags.append(line.strip())
versions.append(parse_version(line.strip()))
return tags[versions.index(max(versions))] if versions else ''
def get_last_tag_by_date(directory=None):
"""
Returns the most recent, by date, tag in the given local git repository.
:param directory: the directory in which to run the query
:returns: the most recent tag by date, else '' if there are no tags
:raises: subprocess.CalledProcessError if git command fails
"""
cmd = "git for-each-ref --sort='*authordate' " \
"--format='%(refname:short)' refs/tags/upstream"
output = check_output(cmd, shell=True, cwd=directory, stderr=PIPE)
output = output.splitlines()
if len(output) == 0:
return ''
return output[-1]
def has_submodules(directory=None):
"""
Returns True if the git repository at this directory has submodules
:param directory: directory to check for submodules in
:returns: True if there are submodules, False otherwise
:raises: RuntimeError if directory is not a git repository
"""
root = get_root(directory)
checked_dir = directory or os.getcwd()
if root is None:
raise RuntimeError("Directory '{0}' is not in a git repository.".format(checked_dir))
cmd = "git submodule status"
output = check_output(cmd, shell=True, cwd=root, stderr=PIPE)
if not output.strip():
return False
return True
def get_remotes(directory=None):
"""
Returns a list of remote names.
:param directory: directory to list remotes from
:returns: a list of git remotes
:raises: RuntimeError if directory is not a git repository
"""
root = get_root(directory)
checked_dir = directory or os.getcwd()
if root is None:
raise RuntimeError("Directory '{0}' is not in a git repository.".format(checked_dir))
cmd = "git remote -v"
output = check_output(cmd, shell=True, cwd=root, stderr=PIPE)
return list(set([x.split()[0].strip() for x in output.splitlines() if x.strip()]))
|