shithub: hugo

Download patch

ref: ffb1a96e765ba887ad97487be1ffcf1cee17aa0f
parent: 37676a25c6dadf4dbd40eb54f6442f5550089800
author: digitalcraftsman <digitalcraftsman@users.noreply.github.com>
date: Fri Nov 27 10:30:16 EST 2015

Docs: improve usage.md

--- a/docs/content/overview/usage.md
+++ b/docs/content/overview/usage.md
@@ -89,7 +89,7 @@
 If you are working on things and want to see the changes immediately, tell Hugo to watch for changes.
 Hugo will watch the filesystem for changes, and rebuild your site as soon as a file is saved:
 
-    $ hugo -s ~/Code/hugo/docs --watch
+    $ hugo -s ~/Code/hugo/docs
     0 draft content
     0 future content
     99 pages created
@@ -122,9 +122,7 @@
 ## Deploying your web site
 
 After running `hugo server` for local web development,
-you need to do a final `hugo` run **without the `server` command**
-and **without `--watch` or `-w`** to rebuild your site.
-You may then **deploy your site** by copying the `public/` directory
+you need to do a final `hugo` run **without the `server` command** to rebuild your site. You may then **deploy your site** by copying the `public/` directory
 (by FTP, SFTP, WebDAV, Rsync, git push, etc.) to your production web server.
 
 Since Hugo generates a static website, your site can be hosted anywhere,
@@ -153,11 +151,11 @@
 
 To start a server that builds draft content (helpful for editing), you can specify a different destination: the `dev/` dir.
 
-    hugo server -wDs ~/Code/hugo/docs -d dev
+    $ hugo server -wDs ~/Code/hugo/docs -d dev
 
 When the content is ready for publishing, use the default `public/` dir:
 
-    hugo -s ~/Code/hugo/docs
+    $ hugo -s ~/Code/hugo/docs
 
 This prevents content you're not ready to share yet from accidentally becoming available.
 
@@ -172,8 +170,7 @@
 
 Here is the command:
 
-    hugo server --watch \
-                --baseURL=http://yoursite.org/ --port=80 \
+    $ hugo server --baseURL=http://yoursite.org/ --port=80 \
                 --appendPort=false \
                 --bind=87.245.198.50
 
--