update git section
All checks were successful
Build, Test & Publish / Build (push) Successful in 1m18s
Build, Test & Publish / Build and Publish Container Image (push) Successful in 2m47s
Build, Test & Publish / Deploy to Infrastructure (push) Successful in 37s

This commit is contained in:
2026-03-03 07:17:52 +11:00
parent 810b2e5d97
commit bfc110e1c1

View File

@@ -12,3 +12,20 @@ Host github.com
IdentityFile ~/.ssh/my-github-key
PreferredAuthentications publickey
```
## Generate SSH Key
Use the following to generate a new SSH key:
```bash
ssh-keygen -t ed25519 -C "<email>"
```
## Configure Git User
You can configure your Git user name and email using the following commands:
```bash
git config --global user.name "Your Name"
git config --global user.email "<email>"
```