diff --git a/README.md b/README.md index 2d8f4af1b..86bb97705 100644 --- a/README.md +++ b/README.md @@ -84,11 +84,11 @@ and then editing the results to include your name, email, and various configurat First, get Cookiecutter. Trust me, it's awesome: - $ pip install "cookiecutter>=1.7.0" + pip install "cookiecutter>=1.7.0" Now run it against this repo: - $ cookiecutter https://github.com/cookiecutter/cookiecutter-django + cookiecutter https://github.com/cookiecutter/cookiecutter-django You'll be prompted for some values. Provide them, then a Django project will be created for you. @@ -175,16 +175,16 @@ Answer the prompts with your own desired [options](http://cookiecutter-django.re Enter the project and take a look around: - $ cd reddit/ - $ ls + cd reddit/ + ls Create a git repo and push it there: - $ git init - $ git add . - $ git commit -m "first awesome commit" - $ git remote add origin git@github.com:pydanny/redditclone.git - $ git push -u origin master + git init + git add . + git commit -m "first awesome commit" + git remote add origin git@github.com:pydanny/redditclone.git + git push -u origin master Now take a look at your repo. Don't forget to carefully look at the generated README. Awesome, right?