|
|
|
|
|
by rstuart4133
479 days ago
|
|
I think this should be the default: git push --force-with-lease
Forces pushes are dangerous enough as it is, so I'm mystified on why git doesn't insist you know the state of upstream before running it.Sadly you can't make it the default, so I resort to: [alias]
force-push = push --force-with-lease
As for the article, I must the the weird one because I prefer most of the settings are they are or don't care. Even some of those designated as "clearly better" don't look to me. |
|