Skip to content

Commit 1d17608

Browse files
committed
docs: minor
let git checkout better complain on uncommitted changes if any
1 parent 52a4e06 commit 1d17608

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ to Heroku.
1616
```
1717
npm install authenticated-docs gh-pages gulp gulp-debug
1818
```
19-
* Copy docs files to authenticated-docs dirs with script:
19+
* Copy docs files to authenticated-docs dirs:
2020
```
2121
./node_modules/.bin/gulp --gulpfile node_modules/authenticated-docs/Gulpfile.js --cwd ./ prepare
2222
```
@@ -27,9 +27,9 @@ npm install authenticated-docs gh-pages gulp gulp-debug
2727
* Switch to the deploy branch:
2828
```
2929
# first time
30-
git fetch && git checkout -f -b deploy origin/deploy
30+
git fetch && git checkout -b deploy origin/deploy
3131
# next time
32-
git fetch && git checkout -f deploy && git reset --hard origin/deploy
32+
git fetch && git checkout deploy && git reset --hard origin/deploy
3333
```
3434
* Create a my-docs app at Heroku (use whatever app name you like)
3535
* Provision the Heroku app with Sendgrid addon for sending auth emails like the one for 'forgot password' function

0 commit comments

Comments
 (0)