diff --git a/index.html b/index.html index cfa7059..ab0ff23 100644 --- a/index.html +++ b/index.html @@ -1,769 +1,1197 @@ - + - -
+ Welcome, First Years! Use this page during today's KUCC hands-on + workshop to complete your live assignment. Bookmark it to use as a + reliable reference library for your upcoming semester projects. +
+ Click the Star button on our repository to + support us, then click Fork to generate a + separate copy of this project directly on your GitHub profile. +
+ Open your terminal and clone down your unique forked copy to your + local machine using the command below: +
git clone https://github.com/YOUR-USERNAME/repo-name.git
- Welcome, First Years! Use this page during today's KUCC hands-on workshop to complete your live - assignment. Bookmark it to use as a reliable reference library for your upcoming semester projects. +
+ Open the folder in VS Code (`code .`). Locate the + <!-- EDIT ME --> tag and append your structured + profile badge block right into the list.
<!-- EDIT ME -->
Click the Star button on our repository to - support us, then click Fork to generate a separate copy of this project - directly on your GitHub profile.
Open your terminal and clone down your unique forked copy to your - local machine using the command below:
Open the folder in VS Code (`code .`). Locate the - <!-- EDIT ME --> tag and append your structured profile badge block right - into the list.
Stage your changes, commit them locally, and push them back out up - to your remote profile. Finally, initiate a live Pull Request back to us!
+ Stage your changes, commit them locally, and push them back out up + to your remote profile. Finally, initiate a live + Pull Request back to us! +
- Open the .html file, edit the syntax profile badge below, and push it to your fork. -
+ Open the .html file, edit the syntax profile badge below, and push it + to your fork. +
Categorized reference manual for everyday local and cloud development - workflows.
+ Categorized reference manual for everyday local and cloud development + workflows. +
Commands to set up your identity, start local repositories, and - connect to remote servers like GitHub.
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
git init
git clone <repo-url>
git remote add origin <repo-url>
git remote set-url origin <repo-url>
+ Commands to set up your identity, start local repositories, and + connect to remote servers like GitHub. +
The essential everyday workflow cycle to stage, inspect, commit, - and share updates.
git status
git add <file-name>
git add .
git commit -m "feat: core tracking"
git push -u origin <branch-name>
git pull
Essential for production-level development to securely isolate - feature releases and merges.
git checkout -b <branch-name>
git checkout <branch-name>
git switch <branch-name>
git branch -a
git merge <branch-name>
git branch -d <branch-name>
+ The essential everyday workflow cycle to stage, inspect, commit, + and share updates. +
Temporarily save local progress without committing, letting you - switch context in a clean working tree.
git stash
git stash list
git stash pop
git stash apply
Browse commits, identify changes, track codebase authorship, and - diagnose system changes.
git log --oneline --graph --all
git diff
git diff --staged
git blame <file-name>
+ Essential for production-level development to securely isolate + feature releases and merges. +
Mistakes happen. These commands let you safely discard, revert, or - overwrite faulty commits and states.
git checkout -- <file-name>
git restore <file-name>
git reset HEAD <file-name>
git commit --amend -m "new message"
git reset --hard HEAD~1
git revert <commit-hash>
+ Temporarily save local progress without committing, letting you + switch context in a clean working tree. +
Essential initial setup steps to securely authenticate your local Git - commands with GitHub.
+ Browse commits, identify changes, track codebase authorship, and + diagnose system changes. +
Secure, password-less authentication using public/private keypairs. - Excellent for long-term coding.
Open your terminal and execute the command below (press Enter to - accept default storage paths):
ssh-keygen -t ed25519 -C "your.email@example.com"
Read and copy the generated public key text block to your clipboard: -
cat ~/.ssh/id_ed25519.pub
Go to GitHub.com → click your Profile Photo → Settings → SSH and GPG - keys → click New SSH Key → paste the copied - block and save.
Run this to test the handshake (type yes if prompted):
ssh -T git@github.com
+ Mistakes happen. These commands let you safely discard, revert, or + overwrite faulty commits and states. +
Authenticate requests via secure API tokens. Perfect if you prefer - standard HTTPS URLs.
Go to GitHub.com → Settings → - Developer Settings → Personal - Access Tokens → Tokens (classic).
Click Generate new token - (classic), set a description, choose an expiration date, check the box for - repo access, and generate.
Copy the token immediately. Warning: GitHub will not show it again! Save - it somewhere safe.
The next time you execute a command (like `git push`) and Git prompts - you for your GitHub Password, paste this Token instead - of your normal account password.
+ Essential initial setup steps to securely authenticate your local Git + commands with GitHub. +
+ Secure, password-less authentication using public/private keypairs. + Excellent for long-term coding. +
+ Open your terminal and execute the command below (press Enter to + accept default storage paths): +
+ Read and copy the generated public key text block to your + clipboard: +
+ Go to GitHub.com → click your Profile Photo → + Settings → + SSH and GPG keys → click + New SSH Key → paste the + copied block and save. +
+ Run this to test the handshake (type + yes if prompted): +
+ Authenticate requests via secure API tokens. Perfect if you prefer + standard HTTPS URLs. +
+ Go to GitHub.com → + Settings → + Developer Settings → + Personal Access Tokens → + Tokens (classic). +
+ Click + Generate new token (classic), set a description, choose an expiration date, check the box + for repo access, and + generate. +
+ Copy the token immediately. + Warning: GitHub will not show it again! + Save it somewhere safe. +
+ The next time you execute a command (like `git push`) and Git + prompts you for your GitHub Password, + paste this Token instead of + your normal account password. +