From 92c0809c658a32a7399e4f9d6041d1fa09070ca0 Mon Sep 17 00:00:00 2001 From: Aaron Date: Sun, 13 Apr 2025 23:06:35 +0200 Subject: [PATCH] [git/tr] Fixes a confusion between regex and glob (#5166) --- tr/git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tr/git.md b/tr/git.md index 6e440f7c..1609accd 100644 --- a/tr/git.md +++ b/tr/git.md @@ -171,7 +171,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.