Merge branch 'jk/ok-to-fail-gc-auto-in-rebase' into maint

"git rebase", unlike all other callers of "gc --auto", did not
ignore the exit code from "gc --auto".

* jk/ok-to-fail-gc-auto-in-rebase:
  rebase: ignore failures from "gc --auto"
This commit is contained in:
Junio C Hamano 2016-02-05 14:54:13 -08:00
Родитель 15f409643e 8c24f5b022
Коммит b11a3badf2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -176,7 +176,7 @@ You can run "git stash pop" or "git stash drop" at any time.
finish_rebase () {
apply_autostash &&
git gc --auto &&
{ git gc --auto || true; } &&
rm -rf "$state_dir"
}