Skip to content

Instantly share code, notes, and snippets.

@carlynorama
Created October 31, 2011 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlynorama/1326675 to your computer and use it in GitHub Desktop.
Save carlynorama/1326675 to your computer and use it in GitHub Desktop.
creating a sym link for using my regular git folder with MAMP install
# go to the folder where the link should be from
cd /Applications/MAMP/htdocs/
# make the link, -s means symbolic
# format is ln -s [source] [target]
# using the period mean "use the same name"
ln -s /Users/[USERNAME]/Documents/GitHub/CRASHSpace/drupal_crashspace_dev/drupal_crashspace_dev .
# then see it listed a reference
ls -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment