diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-10-07 11:15:34 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-10-07 11:15:34 +0300 |
commit | 3896120d164fc4d8880d4e8a0327b65d90af82b8 (patch) | |
tree | 16f7f2a692776df564b1874b614317ccdfbbe995 | |
parent | 7fb12160d8551fc6c236a70bffb42438ef7d7d6b (diff) |
remove git flag that has no effect
-rwxr-xr-x | gitstatus/pull-upstream.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitstatus/pull-upstream.zsh b/gitstatus/pull-upstream.zsh index 05995da4..0ec22438 100755 --- a/gitstatus/pull-upstream.zsh +++ b/gitstatus/pull-upstream.zsh @@ -12,7 +12,7 @@ readonly -a IGNORE=(pull-upstream.zsh README.md) () { local repo && repo="$(mktemp -d ${TMPDIR:-/tmp}/gitstatus-pull-upstream.XXXXXXXXXX)" trap "rm -rf ${(q)repo}" EXIT - git clone --depth 1 --single-branch $GITSTATUS_URL $repo + git clone --depth 1 $GITSTATUS_URL $repo local dst for dst in $GITSTATUS_DIR/**/*(.,@); do |