From 8350b334bef19eded136ab20bd03548848f1285b Mon Sep 17 00:00:00 2001 From: aaron Date: Sun, 3 Nov 2024 10:08:56 +0100 Subject: [PATCH] [git/tr] Fixes a confusion between regex and glob --- tr-tr/git-tr.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tr-tr/git-tr.html.markdown b/tr-tr/git-tr.html.markdown index 2778b7a5..65366216 100644 --- a/tr-tr/git-tr.html.markdown +++ b/tr-tr/git-tr.html.markdown @@ -181,7 +181,7 @@ $ git add HelloWorld.java # add a file in a nested dir $ git add /path/to/file/HelloWorld.c -# Regular Expression support! +# Shell glob patterns make it easy to specify multiple files: $ git add ./*.java # You can also add everything in your working directory to the staging area.