Skip to content

Instantly share code, notes, and snippets.

@mindmergedesign
Last active December 14, 2015 10:49
Show Gist options
  • Save mindmergedesign/5074599 to your computer and use it in GitHub Desktop.
Save mindmergedesign/5074599 to your computer and use it in GitHub Desktop.
Initiate a repository
#Git configuration one time only
git config --global user.name "My Name"
git config --global user.email me@mydomain.com
git config --global color.ui true
cd my/project/folder
git init
git add .
git commit -a -m "initial setup of repository"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment