Skip to content

Commit

Permalink
Change some default settings
Browse files Browse the repository at this point in the history
In revision grid, "Show SHA-1" and "Show indicator for multiline message" are enabled by default
In commit form, "Mark ill formed lines" is enabled by default
  • Loading branch information
pmiossec authored and drewnoakes committed Jun 13, 2018
1 parent 0a4730c commit d1e8ca9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GitCommands/Settings/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ public static bool ShowGitNotes

public static bool ShowIndicatorForMultilineMessage
{
get => GetBool("showindicatorformultilinemessage", false);
get => GetBool("showindicatorformultilinemessage", true);
set => SetBool("showindicatorformultilinemessage", value);
}

Expand All @@ -900,7 +900,7 @@ public static bool ShowTags

public static bool ShowIds
{
get => GetBool("showids", false);
get => GetBool("showids", true);
set => SetBool("showids", value);
}

Expand Down Expand Up @@ -1066,7 +1066,7 @@ public static bool AutoStartPageant

public static bool MarkIllFormedLinesInCommitMsg
{
get => GetBool("markillformedlinesincommitmsg", false);
get => GetBool("markillformedlinesincommitmsg", true);
set => SetBool("markillformedlinesincommitmsg", value);
}

Expand Down

0 comments on commit d1e8ca9

Please sign in to comment.