Last active
July 21, 2023 15:16
-
-
Save kaubu/d7f10be504ba073622a62817d6d6d89a to your computer and use it in GitHub Desktop.
Set the default global git tz to the default
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global log.date default | |
# Environmental variable | |
TZ=UTC | |
# Windows CMD and Powershell (for now), has to be ran as Administrator | |
setx TZ UTC /m | |
# Windows Powershell | |
$env:TZ = "UTC" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment