diff options
-rwxr-xr-x | git-arr | 2 | ||||
-rw-r--r-- | git.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -380,7 +380,7 @@ def generate(output, skip_index = False): # To avoid regenerating files that have not changed, we will # instruct write_to() to set their mtime to the branch's committer - # date, and then compare against it to decide wether or not to + # date, and then compare against it to decide whether or not to # write. branch_mtime = r.commit(bn).committer_date.epoch @@ -253,6 +253,7 @@ class Repo: cmd.max_count = limit cmd.arg(ref) + cmd.arg('--') for l in cmd.run(): yield l.rstrip('\n') @@ -273,6 +274,7 @@ class Repo: cmd.header = None cmd.arg(ref) + cmd.arg('--') info_buffer = '' count = 0 |