You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
By default, when you try do a commit with an empty commit message, you get popup to warn you. This popup has a checkbox "don't warn me again"
For a specific use case I needed to do a lot of commits where adding a commit message was unnecessary, so I checked the checkbox - expecting I could re-enable the warning in the settings later. However, I can't find this option anywhere.
How can I re-enable the warning for empty commits?
Is there any ability to ability add this warning in version 3.4.7 of SourceTree? It seems that the configuration option mentioned above is no longer present.
Hi Jaron! The way to re-enable that pop up depends on whic OS are you using:
- In Windows, edit the %localappdata%/Atlassian/SourceTree.exe_url_{hash}/{version}/user.config and change
<setting name="SuppressWarningOnEmptyCommit" serializeAs="String"> <value>True</value> </setting>
to
<setting name="SuppressWarningOnEmptyCommit" serializeAs="String"> <value>False</value> </setting>
- In Mac, type the following in your terminal
defaults write com.TorusKnot.SourceTreeNotMAS suppressWarnOnEmptyCommit NO
and press 'Enter'.
Cheers :)
Ana
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad to hear that, Jaron. Have a good day!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.