Skip to content

Instantly share code, notes, and snippets.

@Sorbog
Last active February 4, 2019 16:12
Show Gist options
  • Save Sorbog/6119c55f3d461402919919c53b231f35 to your computer and use it in GitHub Desktop.
Save Sorbog/6119c55f3d461402919919c53b231f35 to your computer and use it in GitHub Desktop.
Git config
git config --global user.name '{FIRSTNAME LASTNAME}';
git config --global user.email {EMAIL};
git config --global core.autocrlf input;
git config --global credential.helper 'cache --timeout=3600';
git config --global branch.autosetuprebase always;
git config --global push.default current;
git config --global color.ui true;
git config --global core.fileMode false;
git config --global core.ignorecase false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment