Docs: remove unnecessary --watch flag
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>
Thu, 24 Dec 2015 22:26:04 +0000 (23:26 +0100)
committerAnthony Fok <foka@debian.org>
Sun, 27 Dec 2015 03:03:23 +0000 (20:03 -0700)
docs/content/extras/builders.md
docs/content/tutorials/create-a-multilingual-site.md
docs/content/tutorials/github-pages-blog.md
docs/content/tutorials/migrate-from-jekyll.md

index e3af68e9b871ca7395807c97a107c9e1b4ef1b79..a98f6fab2d4f1a67ab2a220f64255f1f080b9d39 100644 (file)
@@ -52,7 +52,4 @@ will pre-populate values based on the content type.
     $ hugo new relative/path/to/content
 
 This assumes it is being run from your working directory and the content
-path starts from your content directory.
-
-I typically keep two different terminals open, one to run `hugo server
---watch`, and another to use the builders to create new content.
+path starts from your content directory. Now, Hugo watches your content directory by default and rebuilds your entire website if any change occurs.
index 4192a63d7e857291842d7fa17772c74638d43653..d2441c9cb459887211101261ec917de4dea7e4f7 100644 (file)
@@ -138,11 +138,11 @@ Once you have things set up, you can run `hugo server` or `hugo` before deployin
 ~~~shell
 function hugoserver-com {
   cd /Users/me/dev/mainsite
-  hugo server --buildDrafts --watch --verbose --source="/Users/me/dev/mainsite" --config="/Users/me/dev/mainsite/config_en.toml" --port=1377
+  hugo server --buildDrafts --verbose --source="/Users/me/dev/mainsite" --config="/Users/me/dev/mainsite/config_en.toml" --port=1377
 }
 function hugoserver-jp {
   cd /Users/me/dev/mainsite
-  hugo server --buildDrafts --watch --verbose --source="/Users/me/dev/mainsite" --config="/Users/me/dev/mainsite/config_ja.toml" --port=1399
+  hugo server --buildDrafts --verbose --source="/Users/me/dev/mainsite" --config="/Users/me/dev/mainsite/config_ja.toml" --port=1399
 }
 ~~~
 
index 6bdc67b91fee6477399e5596070fb91927bc740a..f4afb061224c476340c6d1c9d35cd51c13913936 100644 (file)
@@ -166,7 +166,7 @@ After executing these commands and waiting for the GitHub servers to update, the
 Now, as you add new posts to your blog, you will follow steps that look something like the following:
 
 * Create the Markdown source for the new post within the `content/posts` directory
-* Preview your work by running Hugo in server mode with `hugo server --watch`
+* Preview your work by running Hugo in server mode with `hugo server`
 * Run Hugo not in server mode so that the generated urls will be correct for the website
 * Add and commit the new post in `master` branch
 * Push the `master` branch
@@ -252,7 +252,7 @@ Step by step:
 1. Create on GitHub `<your-project>-hugo` repository (it will host Hugo's content)
 2. Create on GitHub `<username>.github.io` repository (it will host the `public` folder: the static website)
 2. `git clone <<your-project>-hugo-url> && cd <your-project>-hugo`
-3. Make your website work locally (`hugo server --watch -t <yourtheme>`)
+3. Make your website work locally (`hugo server -t <yourtheme>`)
 4. Once you are happy with the results, <kbd>Ctrl</kbd>+<kbd>C</kbd> (kill server) and `rm -rf public` (don't worry, it can always be regenerated with `hugo -t <yourtheme>`)
 5. `git submodule add git@github.com:<username>/<username>.github.io.git public`
 6. Almost done: add a `deploy.sh` script to help you (and make it executable: `chmod +x deploy.sh`):
index e6592c0b46b05dbad9e1da4c327294eb49913591..c9de314dd8eff2840f213203c1ce6d9948b67a36 100644 (file)
@@ -152,7 +152,7 @@ As a bonus, the shortcode named parameters are, arguably, more readable.
 
 ## Finishing touches
 ### Fix content
-Depending on the amount of customization that was done with each post with Jekyll, this step will require more or less effort. There are no hard and fast rules here except that `hugo server --watch` is your friend. Test your changes and fix errors as needed.
+Depending on the amount of customization that was done with each post with Jekyll, this step will require more or less effort. There are no hard and fast rules here except that `hugo server` is your friend. Test your changes and fix errors as needed.
 
 ### Clean up
 You'll want to remove the Jekyll configuration at this point. If you have anything else that isn't used, delete it.