We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c2c231 commit bbcb1d2Copy full SHA for bbcb1d2
forcePush.ts
@@ -58,8 +58,13 @@ export const forcePush: BranchSequencerBase = (argsBase) =>
58
*
59
* needs to be further explored with our `--sync` (TBD)
60
61
+ *
62
+ * on --force-if-includes, see:
63
+ * - `man git-push`
64
+ * - https://stackoverflow.com/a/65839129/9285308
65
+ * - https://github.com/gitextensions/gitextensions/issues/8753#issuecomment-763390579
66
*/
- const forceWithLeaseOrForce: string = "--force-with-lease";
67
+ const forceWithLeaseOrForce: string = "--force-with-lease --force-if-includes";
68
69
if (!upstreamBranch) {
70
const remotes: string[] = await repo.getRemoteNames();
0 commit comments