Merge branch 'js/rebase-config-bitfix'
* js/rebase-config-bitfix: rebase: replace incorrect logical negation by correct bitwise one
This commit is contained in:
commit
8feb8e27e7
@ -1203,7 +1203,7 @@ static int rebase_config(const char *var, const char *value, void *data)
|
|||||||
if (git_config_bool(var, value))
|
if (git_config_bool(var, value))
|
||||||
opts->flags |= REBASE_DIFFSTAT;
|
opts->flags |= REBASE_DIFFSTAT;
|
||||||
else
|
else
|
||||||
opts->flags &= !REBASE_DIFFSTAT;
|
opts->flags &= ~REBASE_DIFFSTAT;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user