소스 검색

make status one msg instead of two

tags/v0.1
Ben Kurtovic 13 년 전
부모
커밋
406bd73a44
1개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제
  1. +3
    -4
      irc/commands/git.py

+ 3
- 4
irc/commands/git.py 파일 보기

@@ -153,9 +153,8 @@ class Git(BaseCommand):
def do_status(self):
"""check whether we have anything to pull"""
last = self.exec_shell("git log -n 1 --pretty=\"%ar\"")
self.connection.reply(self.data, "last commit was %s. Checking remote for updates..." % last)
result = self.exec_shell("git fetch --dry-run")
if not result:
self.connection.reply(self.data, "local copy is up-to-date with remote.")
if not result: # nothing was fetched, so remote and local are equal
self.connection.reply(self.data, "last commit was %s. Local copy is \x02up-to-date\x0F with remote." % last)
else:
self.connection.reply(self.data, "remote is ahead of local copy.")
self.connection.reply(self.data, "last local commit was %s. Remote is \x02ahead\x0F of local copy." % last)

불러오는 중...
취소
저장