> If this is mostly about saving typing, you could get a similar effect adding > an alias. Something like > > git config --global alias.pushfl 'push --force-with-lease' Correct, and I already have an alias: 'pf = push --force-with-lease --force-if-includes'. However, I see the config option more valuable - it would protect against accidental `push -f`, which, out of habit, is very probable to run on accident. With the config option, would feel safe and wouldn't need the alias either. Thanks.