# HG changeset patch
# User drak@kaverne
# Date 1411033973 -7200
# Node ID 19a6c35d52ff904bb3ccb4a36daa871d928eec38
# Parent 005d07dfce2bf89e413479a11b197bdf4f0d6dcc
note how to create .keep files in every empty folder.
diff -r 005d07dfce2b -r 19a6c35d52ff templates/guide/index.html
--- a/templates/guide/index.html Thu Sep 18 10:58:39 2014 +0200
+++ b/templates/guide/index.html Thu Sep 18 11:52:53 2014 +0200
@@ -598,6 +598,14 @@
$ hg commit -m "ensure that emptyfolder is available." emptyfolder/.keep
+
+To create .keep
files for every empty folder, you can use
+the following command:
+
+
$ find . -type d -empty -exec touch {}/.keep \; + ++