Skip to content

Commit 3d0b8ea

Browse files
committed
Fix: Broken link on source page path
1 parent 57f32af commit 3d0b8ea

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed
File renamed without changes.

docs/git/quiz.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The goal is to help you **learn Git & GitHub hands-on** while having fun.
3838
## Next Steps
3939
Once you complete this quiz:
4040
- Explore the [Git Advanced Topics](/tutorial/git/advanced)
41-
- Learn about [GitHub Actions](/tutorial/github-actions)
41+
- Learn about [GitHub Actions](/tutorial/github/github-actions)
4242
- Contribute to open source with [GitHub Collaboration](/tutorial/github/collaboration)
4343

4444
:::tip

docs/git/roadmap.mdx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ Welcome to the **Git & GitHub roadmap** — a step-by-step guide to help you **m
1313
Start with the basics to build a strong foundation.
1414

1515
1. **Introduction to Git & GitHub**
16-
Route: [`/tutorial/git/introduction`](./introduction)
16+
Route: [`/tutorial/git/introduction`](/tutorial/git/introduction)
1717
Learn what version control is, why Git exists, and how GitHub works.
1818

1919
2. **Git Basics**
20-
Route: [`/tutorial/git/basics`](./basics)
20+
Route: [`/tutorial/git/basics`](/tutorial/git/basics)
2121
- Create repositories (`git init`)
2222
- Track changes (`git add`, `git commit`)
2323
- View commit history (`git log`)
@@ -32,25 +32,25 @@ Start with the basics to build a strong foundation.
3232
Expand your skills with branching, remotes, and collaboration.
3333

3434
1. **Branching & Merging**
35-
Route: [`/tutorial/git/branching-merging`](./branching-merging)
35+
Route: [`/tutorial/git/branching-merging`](/tutorial/git/branching-merging)
3636
- Create, switch, and delete branches
3737
- Merge branches and resolve conflicts
3838
- Visualize branches with `git log --graph`
3939

4040
2. **Working with Remote Repositories**
41-
Route: [`/tutorial/git/remotes`](./remotes)
41+
Route: [`/tutorial/git/remotes`](/tutorial/git/remotes)
4242
- Clone repositories
4343
- Push and pull changes
4444
- Sync forked repositories
4545

4646
3. **Undoing Changes & Troubleshooting**
47-
Route: [`/tutorial/git/undo`](./undo)
47+
Route: [`/tutorial/git/undo`](/tutorial/git/undo)
4848
- Undo commits (`git reset`, `git revert`)
4949
- Discard changes (`git restore`)
5050
- Use stash for temporary work
5151

5252
4. **Collaborating on GitHub**
53-
Route: [`/tutorial/github/collaboration`](./collaboration)
53+
Route: [`/tutorial/github/collaboration`](/tutorial/github/collaboration)
5454
- Issues & discussions
5555
- Pull requests & code reviews
5656
- Project boards
@@ -60,32 +60,32 @@ Expand your skills with branching, remotes, and collaboration.
6060
Master advanced Git concepts, automation, and open-source contributions.
6161

6262
1. **Git Advanced Concepts**
63-
Route: [`/tutorial/git/advanced`](./advanced)
63+
Route: [`/tutorial/git/advanced`](/tutorial/git/advanced)
6464
- Rebasing & cherry-picking
6565
- Tagging versions
6666
- Git hooks & submodules
6767
- Recovering deleted commits (`git reflog`)
6868

6969
2. **GitHub Security & Authentication**
70-
Route: [`/tutorial/github/security`](./security)
70+
Route: [`/tutorial/github/security`](/tutorial/github/security)
7171
- SSH keys, HTTPS, personal access tokens
7272
- Two-factor authentication
7373
- Managing private vs public repositories
7474

7575
3. **GitHub Actions & Automation**
76-
Route: [`/tutorial/github-actions`](./github-actions)
76+
Route: [`/tutorial/github-actions`](/tutorial/github/github-actions)
7777
- Automate builds, tests, and deployments
7878
- YAML workflow basics
7979
- GitHub Pages deployment example
8080

8181
4. **Open Source Contribution Guide**
82-
Route: [`/tutorial/github/open-source`](./open-source)
82+
Route: [`/tutorial/github/open-source`](/tutorial/github/open-source)
8383
- Find projects to contribute
8484
- Fork → Clone → Branch → Commit → Pull Request workflow
8585
- Good first issues and contribution etiquette
8686

8787
5. **Integrations & Tools**
88-
Route: [`/tutorial/github/integrations`](./integrations)
88+
Route: [`/tutorial/github/integrations`](/tutorial/github/integrations)
8989
- VS Code, GitHub Desktop, Git GUI clients
9090
- GitHub CLI and IDE integrations
9191

@@ -100,7 +100,7 @@ After completing the roadmap, practice your skills with real-world projects:
100100
- Set up **team workflows** with multiple collaborators
101101
- Automate **CI/CD pipelines** with GitHub Actions
102102

103-
Routes: [`/tutorial/github/projects`](./projects)
103+
Routes: [`/tutorial/github/projects`](/tutorial/github/projects)
104104

105105
## Additional Resources
106106

docs/github/github-actions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ jobs:
193193

194194
## Next Up
195195

196-
After mastering GitHub Actions, you can explore **Open Source Contribution** — learn how to contribute effectively to projects and build your developer portfolio. 👉 [Next: Open Source Contribution →](./open-source-contribution)
196+
After mastering GitHub Actions, you can explore **Open Source Contribution** — learn how to contribute effectively to projects and build your developer portfolio. 👉 [Next: Open Source Contribution →](/tutorial/github/open-source)
197197

198198
## Additional Resources
199199

0 commit comments

Comments
 (0)