Skip to content

Commit 9288a77

Browse files
committed
Remove unnecessary image and flowchart
1 parent 9bbc746 commit 9288a77

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

site/posts/understanding-gitignore/index.qmd

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ When working with code - especially languages like SAS, R, or Python - we often
3030

3131
These files can clutter the repository, making it harder to see actual code changes. They also unnecessarily increase repository size, which can slow down operations.
3232

33-
![Cluttered vs Clean Repository](cluttered-vs-clean.png)
34-
3533
.gitignore solves this by automatically excluding these unwanted files from version control without someone having to manually specify each time.
3634

3735
## How It Works
@@ -45,14 +43,7 @@ The .gitignore file uses simple patterns to match filenames:
4543
- `!*.sas` - **do not ignore** all files ending with .sas
4644
- `# This is a comment` - Anything after a # is a comment and is ignored
4745

48-
```{mermaid}
49-
flowchart TD
50-
A[File in Project] --> B{.gitignore Pattern Match?}
51-
B -->|Yes| C[File Ignored]
52-
B -->|No| D[File Tracked by Git]
53-
C --> E[Clean Repository]
54-
D --> F[Repository with Unwanted Files]
55-
```
46+
For complete syntax please refer to the [official documentation](https://git-scm.com/docs/gitignore).
5647

5748
These rules are applied whenever Git checks for changes, so you only see relevant modifications.
5849

0 commit comments

Comments
 (0)