Skip to content

Commit

Permalink
Merge pull request apache#6555 from mbien/valid-branch-names-by-default
Browse files Browse the repository at this point in the history
Git: enable "replace invalid branch characters" by default
  • Loading branch information
mbien authored Oct 14, 2023
2 parents e584fab + eafc123 commit 2712a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ide/git/src/org/netbeans/modules/git/GitModuleConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void setAutoOpenOutput(boolean value) {
}

public boolean getAutoReplaceInvalidBranchNameCharacters() {
return getPreferences().getBoolean(AUTO_REPLACE_INVALID_BRANCH_NAME_CHARACTERS, false);
return getPreferences().getBoolean(AUTO_REPLACE_INVALID_BRANCH_NAME_CHARACTERS, true);
}

public void setAutoReplaceInvalidBranchNameCharacters(boolean value) {
Expand Down

0 comments on commit 2712a81

Please sign in to comment.