mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-23 13:24:51 +03:00
docs: remove $
from shell command examples for easier copy-pasting (#5948)
docs: remove $ from shell commands to improve copy-paste usability
This commit is contained in:
parent
e682a9b7a9
commit
255f31dd2a
18
README.md
18
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?
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user