# HG changeset patch # User Augie Fackler # Date 2017-06-13 14:02:34 # Node ID ff02bb5979c1455b240bb8229f57f08f504af460 # Parent 6675d23da74855a350a8b2dc54166d0b345576da # Parent efebc9f52ecbbbe90fcb83c6a6202f2ec948bbc5 merge with stable diff --git a/mercurial/help/patterns.txt b/mercurial/help/patterns.txt --- a/mercurial/help/patterns.txt +++ b/mercurial/help/patterns.txt @@ -58,7 +58,8 @@ Glob examples:: *.c any name ending in ".c" in the current directory **.c any name ending in ".c" in any subdirectory of the current directory including itself. - foo/* any file in directory foo plus all its subdirectories, + foo/* any file in directory foo + foo/** any file in directory foo plus all its subdirectories, recursively foo/*.c any name ending in ".c" in the directory foo foo/**.c any name ending in ".c" in any subdirectory of foo