Skip to content

Commit 5c568db

Browse files
brabojclaude
andcommitted
fix: correct typos and formatting across 5 files
- "used track" → "used to track" (git-features) - double space in "compared to" (git-features) - "are is" → "is" (references) - "asterics" → "asterisks" x2 (pathspec) - ".gitattribures" → ".gitattributes" (pathspec) - "<stat>" → "<start>" (git-log) - "abbrev-comit" → "abbrev-commit" (git-log) - missing space after $ in shell command (git-push) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 701383b commit 5c568db

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/01-Introduction/01-git-features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Overview
22

3-
Git is a version control system used track changes of text files and to a
3+
Git is a version control system used to track changes of text files and to a
44
limited extent of binary files. Some advantages of using a software tracking
55
system are:
66

@@ -13,7 +13,7 @@ system are:
1313
## Features
1414
Git is a distributed control systems, which means that the repository
1515
resides on the local machine and can be synced with other repositories. This
16-
allows very flexible workflows compared to centralized version control
16+
allows very flexible workflows compared to centralized version control
1717
systems such as Subversion (SVN).
1818

1919
- Open Source

docs/02-Concepts/06-references.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $ cat .git/refs/heads/main
6363
### remotes
6464
This folder is used to store the tips of the remote branches. The remote repo
6565
has also a HEAD reference. If the hash value in the file ***origin / main***
66-
are is the same as the one in ***main***, then both branches are in sync.
66+
is the same as the one in ***main***, then both branches are in sync.
6767

6868
```shell
6969
$ cat .git/refs/remotes/origin/main

docs/02-Concepts/12-pathspec.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ git add src/ header/ # Add multiples paths
1717
-------------------------------------------------------------------------------
1818
### Wildcards
1919

20-
The asterics **(\*)** wildcard character matches any number of characters.
20+
The asterisks **(\*)** wildcard character matches any number of characters.
2121

2222
```
2323
git log '*.py' # Show history of all python files
@@ -79,7 +79,7 @@ rather than wildcard symbols.
7979

8080
-------------------------------------------------------------------------------
8181
### glob
82-
Unix like matching when using the asterics (*) wildcard characters. In this
82+
Unix like matching when using the asterisks (*) wildcard characters. In this
8383
case glob will change the matching behavior as follows:
8484

8585
- (*) will not match through directories
@@ -90,7 +90,7 @@ case glob will change the matching behavior as follows:
9090
Match folders using git attributes. Depending on the usecase git offers two
9191
locations to define attributes:
9292

93-
- .gitattribures (tracked)
93+
- .gitattributes (tracked)
9494
- .git/info/attributes (untracked)
9595

9696
-------------------------------------------------------------------------------

docs/03-Operations/06-Sync/01-git-push.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ git push origin
3737
$ git push origin main
3838

3939
# Delete a tag on a remote repository
40-
$git push --delete origin V1.0.0
40+
$ git push --delete origin V1.0.0
4141

4242
# Delete all tags with PowerShell
4343
$ git tag | foreach-object -process { git push origin -d $_ }

docs/03-Operations/08-Inspect/02-git-log.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ git log [<options>] [<revision selector>]
2525
--author=<pattern> : Show all logs by author
2626
--grep=<pattern> : Show all logs matching pattern
2727
-L <pattern>:<file> : Show all logs for a pattern in file
28-
-L <start, end>:<file> : Show all logs for lines <stat> to <end
28+
-L <start, end>:<file> : Show all logs for lines <start> to <end>
2929
3030
# Sorting options
3131
-------------------------------------------------------------------------------
@@ -38,7 +38,7 @@ $ git log [<options>] [<revision selector>]
3838
-------------------------------------------------------------------------------
3939
--pretty=<format> : oneline, medium, full, fuller, reference
4040
--abbrev-commit : Reduce hash code to 7 digits
41-
--oneline : Shorthand for pretty=oneline --abbrev-comit
41+
--oneline : Shorthand for pretty=oneline --abbrev-commit
4242
--graph : Show history graph
4343
--parents : Show the parents
4444
--children : Show the children

0 commit comments

Comments
 (0)