mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
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:
@@ -176,7 +176,7 @@ You can run "git stash pop" or "git stash drop" at any time.
|
|||||||
|
|
||||||
finish_rebase () {
|
finish_rebase () {
|
||||||
apply_autostash &&
|
apply_autostash &&
|
||||||
git gc --auto &&
|
{ git gc --auto || true; } &&
|
||||||
rm -rf "$state_dir"
|
rm -rf "$state_dir"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user