mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
fix: use --no-ff --no-commit
for Don't Commit
option in merge popup to ensure branch is not changed or updated with fast-forward commits (#532)
This commit is contained in:
parent
2670bd89d6
commit
d3991c6535
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
new MergeMode("Default", "Fast-forward if possible", ""),
|
||||
new MergeMode("No Fast-forward", "Always create a merge commit", "--no-ff"),
|
||||
new MergeMode("Squash", "Use '--squash'", "--squash"),
|
||||
new MergeMode("Don't commit", "Merge without commit", "--no-commit"),
|
||||
new MergeMode("Don't commit", "Merge without commit", "--no-ff --no-commit"),
|
||||
];
|
||||
|
||||
public string Name { get; set; }
|
||||
|
|
Loading…
Reference in a new issue