1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 17:54:26 +02:00

[git/tr] Fixes a confusion between regex and glob (#5166)

This commit is contained in:
Aaron
2025-04-13 23:06:35 +02:00
committed by GitHub
parent 32dcaa94c3
commit 92c0809c65

View File

@@ -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.