コード例 #1
0
ファイル: guicmds.py プロジェクト: dcfrancisco/git-cola
def pull():
    """Launch the 'pull' remote dialog."""
    from cola.controllers.remote import remote_action

    return remote_action('pull')
コード例 #2
0
ファイル: guicmds.py プロジェクト: dcfrancisco/git-cola
def fetch():
    """Launch the 'fetch' remote dialog."""
    from cola.controllers.remote import remote_action

    remote_action('fetch')
コード例 #3
0
ファイル: guicmds.py プロジェクト: kbielefe/git-cola
def pull(parent):
    """Launch the 'pull' remote dialog."""
    from cola.controllers.remote import remote_action

    remote_action(parent, 'pull')
コード例 #4
0
ファイル: main.py プロジェクト: johnpaulett/git-cola
 def pull(self):
     """Launch the 'pull' remote dialog."""
     remote_action(self, 'pull')
コード例 #5
0
ファイル: main.py プロジェクト: johnpaulett/git-cola
 def push(self):
     """Launch the 'push' remote dialog."""
     remote_action(self, 'push')
コード例 #6
0
ファイル: main.py プロジェクト: johnpaulett/git-cola
 def fetch(self):
     """Launch the 'fetch' remote dialog."""
     remote_action(self, 'fetch')