Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git config commands need double quotes instead of single quotes
You might want to test this on other devices/OSs, and if this doesn't work across the board then there should be a note that different quotes are needed based on your OS. I'm on a freshly reformatted Windows 10 Pro, using the classic Windows Command Prompt, and I noticed that when using single quotes, the value gets cut off at whitespace: ```cmd C:\Users\Dean>git config --global user.name 'Jane Doe' C:\Users\Dean>git config --global --list user.name='Jane C:\Users\Dean>git config --global --unset-all user.name C:\Users\Dean>git config --global user.name "Jane Doe" C:\Users\Dean>git config --global --list user.name=Jane Doe ```
- Loading branch information