Browse Source

notify user when we're checking remote for updates, because it might take some time to do

tags/v0.1
Ben Kurtovic 13 years ago
parent
commit
47b80b3796
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      irc/commands/git.py

+ 1
- 0
irc/commands/git.py View File

@@ -144,6 +144,7 @@ def do_pull():

def do_status():
"""check whether we have anything to pull"""
actions.reply(data.chan, data.nick, "checking remote for updates...")
result = exec_shell("git fetch --dry-run")
if not result:
actions.reply(data.chan, data.nick, "local copy is up-to-date with remote.")


Loading…
Cancel
Save