Skip to content

Commit 958ce61

Browse files
committed
Adding more git pages
1 parent a178e5e commit 958ce61

19 files changed

+346
-13
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":{"pluginId":"Git-101","version":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","isLast":true,"docsSidebars":{"tutorialSidebar":[{"type":"link","label":"Intro","href":"/git_101/intro","docId":"intro","unlisted":false},{"type":"category","label":"Grade 1","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"What is Git","href":"/git_101/Grade 1/What is Git","docId":"Grade 1/What is Git","unlisted":false},{"type":"link","label":"Installing Git","href":"/git_101/Grade 1/Installing Git","docId":"Grade 1/Installing Git","unlisted":false},{"type":"link","label":"Setting Username and Email","href":"/git_101/Grade 1/Setting Username and Email","docId":"Grade 1/Setting Username and Email","unlisted":false},{"type":"link","label":"Git Init","href":"/git_101/Grade 1/Git Init","docId":"Grade 1/Git Init","unlisted":false},{"type":"link","label":"Git Clone","href":"/git_101/Grade 1/Git Clone","docId":"Grade 1/Git Clone","unlisted":false}]},{"type":"category","label":"Grade 2","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Understanding the Git Workflow","href":"/git_101/Grade 2/Understanding the Git Workflow","docId":"Grade 2/Understanding the Git Workflow","unlisted":false},{"type":"link","label":"Git Add","href":"/git_101/Grade 2/Git Add","docId":"Grade 2/Git Add","unlisted":false},{"type":"link","label":"Git Commit","href":"/git_101/Grade 2/Git Commit","docId":"Grade 2/Git Commit","unlisted":false}]}]},"docs":{"Grade 1/Git Clone":{"id":"Grade 1/Git Clone","title":"Git Clone","description":"Instead of starting a new project from scratch, you can use Git to clone an existing repository — copying all its files, branches, and history to your local machine.","sidebar":"tutorialSidebar"},"Grade 1/Git Init":{"id":"Grade 1/Git Init","title":"Git Init","description":"The first step to using Git in any project is to initialize a repository. This sets up a hidden .git directory that tracks your changes, branches, history, and more.","sidebar":"tutorialSidebar"},"Grade 1/Installing Git":{"id":"Grade 1/Installing Git","title":"Installing Git","description":"Before you can start using Git, you need to install it on your computer. Below are step-by-step instructions for installing Git on Windows, macOS, and Linux.","sidebar":"tutorialSidebar"},"Grade 1/Setting Username and Email":{"id":"Grade 1/Setting Username and Email","title":"Setting Username and Email","description":"Before making your first commit, it's essential to tell Git who you are. Git uses your username and email address to label every commit you make. This helps with collaboration, tracking changes, and understanding project history.","sidebar":"tutorialSidebar"},"Grade 1/What is Git":{"id":"Grade 1/What is Git","title":"What is Git","description":"Git is a distributed version control system (VCS) that helps developers manage and track changes in their codebase over time. It allows multiple people to collaborate on projects efficiently and safely, without fear of overwriting each other's work.","sidebar":"tutorialSidebar"},"Grade 2/Git Add":{"id":"Grade 2/Git Add","title":"Git Add","description":"Once you’ve made changes in your project, the next step is to stage those changes using git add. This prepares them to be included in your next commit.","sidebar":"tutorialSidebar"},"Grade 2/Git Commit":{"id":"Grade 2/Git Commit","title":"Git Commit","description":"After staging your changes with git add, the next step is to commit them to your Git repository. Commits act like snapshots of your project at a specific moment in time.","sidebar":"tutorialSidebar"},"Grade 2/Understanding the Git Workflow":{"id":"Grade 2/Understanding the Git Workflow","title":"Understanding the Git Workflow","description":"To use Git effectively, it’s important to understand the workflow which is broken into three parts:","sidebar":"tutorialSidebar"},"intro":{"id":"intro","title":"Intro","description":"This course is designed for developers, data professionals, and anyone interested in mastering version control using Git. By the end of this course, you'll be proficient in using Git for version control and collaborating effectively using GitHub.","sidebar":"tutorialSidebar"}}}}
1+
{"version":{"pluginId":"Git-101","version":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","isLast":true,"docsSidebars":{"tutorialSidebar":[{"type":"link","label":"Intro","href":"/git_101/intro","docId":"intro","unlisted":false},{"type":"category","label":"Grade 1","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"What is Git","href":"/git_101/Grade 1/What is Git","docId":"Grade 1/What is Git","unlisted":false},{"type":"link","label":"Installing Git","href":"/git_101/Grade 1/Installing Git","docId":"Grade 1/Installing Git","unlisted":false},{"type":"link","label":"Setting Username and Email","href":"/git_101/Grade 1/Setting Username and Email","docId":"Grade 1/Setting Username and Email","unlisted":false},{"type":"link","label":"Git Init","href":"/git_101/Grade 1/Git Init","docId":"Grade 1/Git Init","unlisted":false},{"type":"link","label":"Git Clone","href":"/git_101/Grade 1/Git Clone","docId":"Grade 1/Git Clone","unlisted":false}]},{"type":"category","label":"Grade 2","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"Understanding the Git Workflow","href":"/git_101/Grade 2/Understanding the Git Workflow","docId":"Grade 2/Understanding the Git Workflow","unlisted":false},{"type":"link","label":"Git Add","href":"/git_101/Grade 2/Git Add","docId":"Grade 2/Git Add","unlisted":false},{"type":"link","label":"Git Commit","href":"/git_101/Grade 2/Git Commit","docId":"Grade 2/Git Commit","unlisted":false},{"type":"link","label":"Git Log","href":"/git_101/Grade 2/Git Log","docId":"Grade 2/Git Log","unlisted":false}]},{"type":"category","label":"Grade 3","collapsible":true,"collapsed":true,"items":[{"type":"link","label":"GitHub Account Creation","href":"/git_101/Grade 3/GitHub Account Creation","docId":"Grade 3/GitHub Account Creation","unlisted":false}]}]},"docs":{"Grade 1/Git Clone":{"id":"Grade 1/Git Clone","title":"Git Clone","description":"Instead of starting a new project from scratch, you can use Git to clone an existing repository — copying all its files, branches, and history to your local machine.","sidebar":"tutorialSidebar"},"Grade 1/Git Init":{"id":"Grade 1/Git Init","title":"Git Init","description":"The first step to using Git in any project is to initialize a repository. This sets up a hidden .git directory that tracks your changes, branches, history, and more.","sidebar":"tutorialSidebar"},"Grade 1/Installing Git":{"id":"Grade 1/Installing Git","title":"Installing Git","description":"Before you can start using Git, you need to install it on your computer. Below are step-by-step instructions for installing Git on Windows, macOS, and Linux.","sidebar":"tutorialSidebar"},"Grade 1/Setting Username and Email":{"id":"Grade 1/Setting Username and Email","title":"Setting Username and Email","description":"Before making your first commit, it's essential to tell Git who you are. Git uses your username and email address to label every commit you make. This helps with collaboration, tracking changes, and understanding project history.","sidebar":"tutorialSidebar"},"Grade 1/What is Git":{"id":"Grade 1/What is Git","title":"What is Git","description":"Git is a distributed version control system (VCS) that helps developers manage and track changes in their codebase over time. It allows multiple people to collaborate on projects efficiently and safely, without fear of overwriting each other's work.","sidebar":"tutorialSidebar"},"Grade 2/Git Add":{"id":"Grade 2/Git Add","title":"Git Add","description":"Once you’ve made changes in your project, the next step is to stage those changes using git add. This prepares them to be included in your next commit.","sidebar":"tutorialSidebar"},"Grade 2/Git Commit":{"id":"Grade 2/Git Commit","title":"Git Commit","description":"After staging your changes with git add, the next step is to commit them to your Git repository. Commits act like snapshots of your project at a specific moment in time.","sidebar":"tutorialSidebar"},"Grade 2/Git Log":{"id":"Grade 2/Git Log","title":"Git Log","description":"Once you’ve made several commits, it’s important to understand how to view and explore your project’s history. Git’s git log command gives you a detailed view of every commit that has been made.","sidebar":"tutorialSidebar"},"Grade 2/Understanding the Git Workflow":{"id":"Grade 2/Understanding the Git Workflow","title":"Understanding the Git Workflow","description":"To use Git effectively, it’s important to understand the workflow which is broken into three parts:","sidebar":"tutorialSidebar"},"Grade 3/GitHub Account Creation":{"id":"Grade 3/GitHub Account Creation","title":"GitHub Account Creation","description":"Before you can share your projects online or collaborate with others, you need a GitHub account. GitHub is the most popular platform for hosting Git repositories and working with teams. Other platsforms like GitLab and Bitbucket also exist, but GitHub is the most widely used.","sidebar":"tutorialSidebar"},"intro":{"id":"intro","title":"Intro","description":"This course is designed for developers, data professionals, and anyone interested in mastering version control using Git. By the end of this course, you'll be proficient in using Git for version control and collaborating effectively using GitHub.","sidebar":"tutorialSidebar"}}}}

.docusaurus/docusaurus-plugin-content-docs/Git-101/site-git-101-grade-2-git-commit-md-96d.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,9 @@
1919
"previous": {
2020
"title": "Git Add",
2121
"permalink": "/git_101/Grade 2/Git Add"
22+
},
23+
"next": {
24+
"title": "Git Log",
25+
"permalink": "/git_101/Grade 2/Git Log"
2226
}
2327
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"id": "Grade 2/Git Log",
3+
"title": "Git Log",
4+
"description": "Once you’ve made several commits, it’s important to understand how to view and explore your project’s history. Git’s git log command gives you a detailed view of every commit that has been made.",
5+
"source": "@site/git_101/Grade 2/git_log.md",
6+
"sourceDirName": "Grade 2",
7+
"slug": "/Grade 2/Git Log",
8+
"permalink": "/git_101/Grade 2/Git Log",
9+
"draft": false,
10+
"unlisted": false,
11+
"tags": [],
12+
"version": "current",
13+
"sidebarPosition": 4,
14+
"frontMatter": {
15+
"id": "Git Log",
16+
"sidebar_position": 4
17+
},
18+
"sidebar": "tutorialSidebar",
19+
"previous": {
20+
"title": "Git Commit",
21+
"permalink": "/git_101/Grade 2/Git Commit"
22+
},
23+
"next": {
24+
"title": "GitHub Account Creation",
25+
"permalink": "/git_101/Grade 3/GitHub Account Creation"
26+
}
27+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"id": "Grade 3/GitHub Account Creation",
3+
"title": "GitHub Account Creation",
4+
"description": "Before you can share your projects online or collaborate with others, you need a GitHub account. GitHub is the most popular platform for hosting Git repositories and working with teams. Other platsforms like GitLab and Bitbucket also exist, but GitHub is the most widely used.",
5+
"source": "@site/git_101/Grade 3/create_account.md",
6+
"sourceDirName": "Grade 3",
7+
"slug": "/Grade 3/GitHub Account Creation",
8+
"permalink": "/git_101/Grade 3/GitHub Account Creation",
9+
"draft": false,
10+
"unlisted": false,
11+
"tags": [],
12+
"version": "current",
13+
"sidebarPosition": 1,
14+
"frontMatter": {
15+
"id": "GitHub Account Creation",
16+
"sidebar_position": 1
17+
},
18+
"sidebar": "tutorialSidebar",
19+
"previous": {
20+
"title": "Git Log",
21+
"permalink": "/git_101/Grade 2/Git Log"
22+
}
23+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"options":{"id":"Python-101","path":"python_101","routeBasePath":"/python_101","sidebarPath":"/home/tom/Projects/tom-fynes.github.io/sidebars.js","editCurrentVersion":false,"editLocalizedFiles":false,"tagsBasePath":"tags","include":["**/*.{md,mdx}"],"exclude":["**/_*.{js,jsx,ts,tsx,md,mdx}","**/_*/**","**/*.test.{js,jsx,ts,tsx}","**/__tests__/**"],"sidebarCollapsible":true,"sidebarCollapsed":true,"docsRootComponent":"@theme/DocsRoot","docVersionRootComponent":"@theme/DocVersionRoot","docRootComponent":"@theme/DocRoot","docItemComponent":"@theme/DocItem","docTagsListComponent":"@theme/DocTagsListPage","docTagDocListComponent":"@theme/DocTagDocListPage","docCategoryGeneratedIndexComponent":"@theme/DocCategoryGeneratedIndexPage","remarkPlugins":[],"rehypePlugins":[],"recmaPlugins":[],"beforeDefaultRemarkPlugins":[],"beforeDefaultRehypePlugins":[],"admonitions":true,"showLastUpdateTime":false,"showLastUpdateAuthor":false,"includeCurrentVersion":true,"disableVersioning":false,"versions":{},"breadcrumbs":true,"onInlineTags":"warn"},"versionsMetadata":[{"versionName":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","path":"/python_101","tagsPath":"/python_101/tags","isLast":true,"routePriority":-1,"sidebarFilePath":"/home/tom/Projects/tom-fynes.github.io/sidebars.js","contentPath":"/home/tom/Projects/tom-fynes.github.io/python_101","contentPathLocalized":"/home/tom/Projects/tom-fynes.github.io/i18n/en/docusaurus-plugin-content-docs-Python-101/current"}]}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "docusaurus-plugin-content-docs",
3+
"id": "Python-101"
4+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"version":{"pluginId":"Python-101","version":"current","label":"Next","banner":null,"badge":false,"noIndex":false,"className":"docs-version-current","isLast":true,"docsSidebars":{"tutorialSidebar":[{"type":"link","label":"Python 101","href":"/python_101/intro","docId":"intro","unlisted":false}]},"docs":{"intro":{"id":"intro","title":"Python 101","description":"Coming Soon!7","sidebar":"tutorialSidebar"}}}}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"id": "intro",
3+
"title": "Python 101",
4+
"description": "Coming Soon!7",
5+
"source": "@site/python_101/intro.md",
6+
"sourceDirName": ".",
7+
"slug": "/intro",
8+
"permalink": "/python_101/intro",
9+
"draft": false,
10+
"unlisted": false,
11+
"tags": [],
12+
"version": "current",
13+
"sidebarPosition": 1,
14+
"frontMatter": {
15+
"id": "intro",
16+
"sidebar_position": 1
17+
},
18+
"sidebar": "tutorialSidebar"
19+
}

.docusaurus/docusaurus-plugin-debug/default/p/docusaurus-debug-content-0d5.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

.docusaurus/docusaurus.config.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ export default {
3232
"routeBasePath": "git_101",
3333
"sidebarPath": "./sidebars.js"
3434
}
35+
],
36+
[
37+
"@docusaurus/plugin-content-docs",
38+
{
39+
"id": "Python-101",
40+
"path": "python_101",
41+
"routeBasePath": "python_101",
42+
"sidebarPath": "./sidebars.js"
43+
}
3544
]
3645
],
3746
"themes": [
@@ -133,6 +142,10 @@ export default {
133142
{
134143
"label": "Git 101",
135144
"to": "/git_101/intro"
145+
},
146+
{
147+
"label": "Python 101",
148+
"to": "/python_101/intro"
136149
}
137150
]
138151
},
@@ -194,6 +207,11 @@ export default {
194207
"label": "Git 101",
195208
"to": "/git_101/intro",
196209
"description": "Learn the basics of Git"
210+
},
211+
{
212+
"label": "Python 101",
213+
"to": "/python_101/intro",
214+
"description": "Learn the basics of Python"
197215
}
198216
]
199217
},

0 commit comments

Comments
 (0)