コード例 #1
0
ファイル: gitcmds.py プロジェクト: queer1/git-cola
def export_patchset(start, end, output='patches', **kwargs):
    """Export patches from start^ to end."""
    return git.format_patch('-o',
                            output,
                            start + '^..' + end,
                            with_stderr=True,
                            with_status=True,
                            **kwargs)
コード例 #2
0
ファイル: gitcmds.py プロジェクト: jalaludin/git-cola
def export_patchset(start, end, output="patches", **kwargs):
    """Export patches from start^ to end."""
    return git.format_patch("-o", output, start + "^.." + end, **kwargs)
コード例 #3
0
ファイル: gitcmds.py プロジェクト: suside/git-cola
def export_patchset(start, end, output='patches', **kwargs):
    """Export patches from start^ to end."""
    return git.format_patch('-o', output, start + '^..' + end,
                            with_stderr=True,
                            with_status=True,
                            **kwargs)