Skip to content

Instantly share code, notes, and snippets.

@jagregory
Created February 12, 2010 09:50
Show Gist options
  • Save jagregory/302441 to your computer and use it in GitHub Desktop.
Save jagregory/302441 to your computer and use it in GitHub Desktop.
# my git clone workflow (on windows)
git clone _whatever_
git status
# if you get anything showing up as changed in your status output, you've got
# line endings issues. if status is clean, you're good to go, otherwise:
git config core.autocrlf false
git status
# status should be clean now and you're good to go... if not, try setting it to true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment