Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

edgify / rook   python

Repository URL to install this package:

/ git.py

import os
import re

GIT_FOLDER = '.git'
GIT_HEAD = 'HEAD'
GIT_CONFIG = 'config'


def is_git(path):
    return os.path.isdir(os.path.join(path, GIT_FOLDER))


def find_root(path):
    if is_git(path):
        return path
    else:
        next_path = os.path.dirname(path)
        if next_path != path:
            return find_root(next_path)
        else:
            return None


def get_revision(path):
    return follow_sym_links(os.path.join(path, GIT_FOLDER), GIT_HEAD)


def get_remote_origin(path):
    with open(os.path.join(path, GIT_FOLDER, GIT_CONFIG)) as config_file:
        config = config_file.read()
    match = re.search(r'\[remote "origin"\]\s*url\s*=\s(?P<url>\S*)', config)
    if match and len(match.groups()) == 1:
        return match.group(0)
    else:
        return ''


def follow_sym_links(root, link):
    with open(os.path.join(root, link), 'r') as f:
        content = f.read()

    if content.startswith("ref:"):
        next_link = content.split(' ')[1].strip()
        return follow_sym_links(root, next_link)
    else:
        return content.strip()