Last active
August 20, 2023 01:05
Revisions
-
JonnyTech revised this gist
Aug 20, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -23,7 +23,7 @@ https://github.com/settings/tokens/new git config --global user.name "username" git config --global user.email "name[at]domain[dot]tld" git config --global user.email "ID+[email protected]" git config --global color.ui auto git clone https://github.com/username/repo -
JonnyTech revised this gist
Jun 7, 2023 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,6 +9,7 @@ eval "$(ssh-agent -s)" ssh-add ~/.ssh/github ssh -vT [email protected] gpg -K --keyid-format SHORT gpg --full-generate-key gpg --list-secret-keys --keyid-format=long >> long string at and of sec value -
JonnyTech revised this gist
May 9, 2023 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -26,11 +26,15 @@ git config --global user.email "[email protected]" git config --global color.ui auto git clone https://github.com/username/repo >> write code :) git log git status git diff --cached git diff HEAD git add . >> ensure that git and gpg key email addresses are identical git commit -S -m "commit title/brief" -m "commit decription" >> enter gpg secret git push >> username, pat git log --show-signature -
JonnyTech revised this gist
May 7, 2023 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,6 +9,13 @@ eval "$(ssh-agent -s)" ssh-add ~/.ssh/github ssh -vT [email protected] gpg --full-generate-key gpg --list-secret-keys --keyid-format=long >> long string at and of sec value gpg --armor --export <sec value> >> copy whole block including ---'s https://github.com/settings/gpg/new https://github.com/settings/tokens/new >> name, repo status >> copy and save pat -
JonnyTech revised this gist
May 7, 2023 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,4 +25,5 @@ git add . >> ensure that git and gpg key email addresses are identical git commit -S -m "commit title/brief" -m "commit decription" git push >> username, pat git log --show-signature -
JonnyTech revised this gist
May 7, 2023 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,7 +22,7 @@ git clone https://github.com/username/repo git log git status git add . >> ensure that git and gpg key email addresses are identical git commit -S -m "commit title/brief" -m "commit decription" git push >> username, pat -
JonnyTech revised this gist
May 6, 2023 . 1 changed file with 10 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,11 +9,20 @@ eval "$(ssh-agent -s)" ssh-add ~/.ssh/github ssh -vT [email protected] https://github.com/settings/tokens/new >> name, repo status >> copy and save pat git config --global user.name "username" git config --global user.email "name[at]domain[dot]tld" git config --global user.email "[email protected]" git config --global color.ui auto git clone https://github.com/username/repo git log git status git add . git commit -m "commit message" git commit -m "commit title/brief" -m "commit decription" git push >> username, pat -
JonnyTech revised this gist
May 6, 2023 . 1 changed file with 5 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,18 +1,19 @@ ssh-keygen -t ed25519 -C "name[at]domain[dot]tld" >> keyfile ie /home/user/.ssh/github >> passphrase and confirm https://github.com/settings/ssh/new cat /home/user/.ssh/github >> authentication key eval "$(ssh-agent -s)" ssh-add ~/.ssh/github ssh -vT [email protected] git config --global user.name "username" git config --global user.email "name[at]domain[dot]tld" git config --global color.ui auto git clone https://github.com/username/repo git log git commit -m "commit message" git push -
JonnyTech created this gist
May 6, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ ``` ssh-keygen -t ed25519 -C "name[at]domain[dot]tld" >> keyfile ie /home/user/.ssh/github >> passphrase and confirm https://github.com/settings/ssh/new cat /home/user/.ssh/github >> authentication key eval "$(ssh-agent -s)" ssh-add ~/.ssh/github ssh -vT [email protected] git config --global user.name "username" git config --global user.email "name[at]domain[dot]tld" git config --global color.ui auto git clone github.com/username/repo git log git commit -m "commit message" git push ```