Skip to content

Commit

Permalink
Cleanup of TOC header issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nmagee committed Jan 10, 2025
1 parent 77b6256 commit 6916610
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 10 deletions.
3 changes: 2 additions & 1 deletion docs/creating-repositories.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ last_modified_date: "2024-08-20 02:13AM"
---

# Creating and Managing Git Repositories
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .text-delta }
{: .no_toc .text-delta }
- TOC
{:toc}
</details>
Expand Down
3 changes: 2 additions & 1 deletion docs/forks-branches.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ last_modified_date: "2024-08-20 02:13AM"
---

# Branches & Merges
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .text-delta }
{: .no_toc .text-delta }
- TOC
{:toc}
</details>
Expand Down
4 changes: 3 additions & 1 deletion docs/git-advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@ last_modified_date: "2024-09-23 10:46AM"
---

# Advanced `git`
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .text-delta }
{: .no_toc .text-delta }
- TOC
{:toc}
</details>


## Tag

Commits can be tagged by the developer, as a way of marking a specific commit. This is useful in preparation for a version release, or simply for marking a particular goal has been reached.
Expand Down
7 changes: 4 additions & 3 deletions docs/git-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,20 @@ last_modified_date: "2024-08-20 02:13AM"
---

# Git Basics

This page covers the most essential commands when tracking your code using `git` and GitHub.
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .text-delta }
{: .no_toc .text-delta }
- TOC
{:toc}
</details>


This page covers the most essential commands when tracking your code using `git` and GitHub.

## Diff

Git was designed to track changes made to files and their location within a project. `git diff` is one of the best ways to see how things have actually changed. `git diff` is a function that takes two input data sets and outputs the changes between them.
Expand Down
3 changes: 2 additions & 1 deletion docs/github-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ last_modified_date: "2024-08-20 02:13AM"
---

# GitHub Actions
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .text-delta }
{: .no_toc .text-delta }
- TOC
{:toc}
</details>
Expand Down
11 changes: 11 additions & 0 deletions docs/github-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ last_modified_date: "2024-08-20 02:13AM"
---

# GitHub Issues
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .no_toc .text-delta }
- TOC
{:toc}
</details>


GitHub Issues is a robust and collaborative issue tracking system that helps teams manage and prioritize tasks, bugs, and feature requests within a GitHub repository. Users can create issues to report problems, suggest enhancements, or outline new features. Each issue acts as a centralized hub for discussions, allowing team members to comment, share insights, and collaborate on problem-solving. Additionally, issues can be assigned to specific team members, labeled for categorization, and linked to pull requests, fostering a seamless integration with the overall development workflow.

Expand Down
4 changes: 3 additions & 1 deletion docs/ssh-authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@ last_modified_date: "2024-09-25 02:13AM"
---

# Setting up SSH Authentication for GitHub
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .text-delta }
{: .no_toc .text-delta }
- TOC
{:toc}
</details>


This page explains in more depth how to configure `git` to use SSH authentication, and how to clone repositories
using that method.

Expand Down
6 changes: 4 additions & 2 deletions docs/token-authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@ last_modified_date: "2024-09-23 02:13AM"
---

# Setting up Token Authentication for GitHub
{: .no_toc }

<details open markdown="block">
<summary>
Table of contents
</summary>
{: .text-delta }
{: .no_toc .text-delta }
- TOC
{:toc}
</details>


This page explains in more depth how to configure `git` to use token authentication, and how to set up a `.git-credentials` file so that your PAT only needs to be stored in one location (and not within each repository's `.git/config` file. This is accomplished by configuring git to use the credential store (a hard-coded local file) instead of the credential cache (which keeps credentials in memory).

> Pre-requisite: Create a GitHub [**Personal Access Token (PAT)**](https://github.com/settings/tokens).
Expand Down Expand Up @@ -92,4 +94,4 @@ git remote set-url origin https://github.com/ACCOUNT/REPO.git
## Watch how to set up a PAT

[![Using a Personal Access Token with GitHub](https://i.ytimg.com/vi/C4R2mMx6C-k/maxresdefault.jpg)](https://www.youtube.com/embed/C4R2mMx6C-k?si=UPknm4ygzhenNrRN)
[![Using a Personal Access Token with GitHub](https://i.ytimg.com/vi/C4R2mMx6C-k/maxresdefault.jpg)](https://www.youtube.com/embed/C4R2mMx6C-k?si=UPknm4ygzhenNrRN)

0 comments on commit 6916610

Please sign in to comment.