From 825e4da6edea2420a65ff8f79e5b1fc488263f54 Mon Sep 17 00:00:00 2001 From: logananglin98 Date: Tue, 13 May 2025 11:44:50 -0400 Subject: [PATCH 1/3] Changed all tags to tags and ensured xml:id was present for every tag --- source/sec_git_basics.ptx | 64 +++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/source/sec_git_basics.ptx b/source/sec_git_basics.ptx index 708f218a..a4fc1118 100644 --- a/source/sec_git_basics.ptx +++ b/source/sec_git_basics.ptx @@ -39,7 +39,7 @@ - + Initializing a Repository in an Existing Directory @@ -105,9 +105,9 @@ $ git commit -m 'Initial project version' - + - + Cloning an Existing Repository @@ -148,7 +148,7 @@ $ git commit -m 'Initial project version' - + @@ -188,7 +188,7 @@ $ git commit -m 'Initial project version' - + Checking the Status of Your Files @@ -232,9 +232,9 @@ nothing added to commit but untracked files present (use "git add" to track) - + - + Tracking New Files @@ -267,9 +267,9 @@ Changes to be committed:

-
+ - + Staging Modified Files @@ -351,9 +351,9 @@ Changes to be committed: modified: CONTRIBUTING.md - + - + Short Status @@ -376,9 +376,9 @@ M lib/simplegit.rb

-
+ - + Ignoring Files @@ -512,9 +512,9 @@ doc/**/*.pdf - + - + Viewing Your Staged and Unstaged Changes @@ -659,9 +659,9 @@ index 8ebb991..643e24f 100644

-
+ - + Committing Your Changes @@ -741,9 +741,9 @@ index 8ebb991..643e24f 100644

-
+ - + Skipping the Staging Area @@ -773,9 +773,9 @@ $ git commit -a -m 'Add new benchmarks'

-
+ - + Removing Files @@ -858,9 +858,9 @@ Changes to be committed:

-
+ - + Moving Files @@ -910,7 +910,7 @@ $ git add README - + @@ -1039,7 +1039,7 @@ index a0a60ae..47c6340 100644 - + Showing Your Remotes @@ -1097,9 +1097,9 @@ origin git@github.com:mojombo/grit.git (push) - + - + Adding Remote Repositories @@ -1140,9 +1140,9 @@ From https://github.com/paulboone/ticgit

-
+ - + Fetching and Pulling from Your Remotes @@ -1186,9 +1186,9 @@ From https://github.com/paulboone/ticgit - + - + Pushing to Your Remotes @@ -1206,7 +1206,7 @@ From https://github.com/paulboone/ticgit

-
+ From ed43ce38adeea9cdf899b5ad44baae6ec46fa3d1 Mon Sep 17 00:00:00 2001 From: logananglin98 Date: Tue, 13 May 2025 13:13:13 -0400 Subject: [PATCH 2/3] Separated asterisk and double asterisk into two separate paragraphs and added tags so they would both appear in the symbols index --- source/sec_git_basics.ptx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/source/sec_git_basics.ptx b/source/sec_git_basics.ptx index a4fc1118..903ed470 100644 --- a/source/sec_git_basics.ptx +++ b/source/sec_git_basics.ptx @@ -458,7 +458,7 @@ M lib/simplegit.rb

- Glob patterns are like simplified regular expressions that shells use. An asterisk (*) matches zero or more characters; [abc] matches any character inside the brackets (in this case a, b, or c); a question mark (?) matches a single character; and brackets enclosing characters separated by a hyphen ([0-9]) matches any character between them (in this case 0 through 9). You can also use two asterisks to match nested directories; a/**/z would match a/z, a/b/z, a/b/c/z, and so on. + Glob patterns are like simplified regular expressions that shells use. An asterisk (*) matches zero or more characters; [abc] matches any character inside the brackets (in this case a, b, or c); a question mark (?) matches a single character; and brackets enclosing characters separated by a hyphen ([0-9]) matches any character between them (in this case 0 through 9). [ - ] brackets - encloses characters @@ -468,6 +468,13 @@ M lib/simplegit.rb asterisk - matches zero or more characters

+

+ You can also use two asterisks to match nested directories; a/**/z would match a/z, a/b/z, a/b/c/z, and so on. + + ** + double asterisk - + +

From 91d9ebb64f099f414489a5deda51438c3f81bbf9 Mon Sep 17 00:00:00 2001 From: logananglin98 Date: Tue, 13 May 2025 15:00:03 -0400 Subject: [PATCH 3/3] Fixed index description for double asterisk --- source/sec_git_basics.ptx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sec_git_basics.ptx b/source/sec_git_basics.ptx index 903ed470..241900c5 100644 --- a/source/sec_git_basics.ptx +++ b/source/sec_git_basics.ptx @@ -472,7 +472,7 @@ M lib/simplegit.rb You can also use two asterisks to match nested directories; a/**/z would match a/z, a/b/z, a/b/c/z, and so on. ** - double asterisk - + double asterisk - matches characters in nested directories