Sometimes I forget this shit... So easy to hold onto it instead of constantly googling.
git init
git add -A
git commit -m ""
git remote add origin [email protected]:jerdog/my-new-project.git
git push -u origin main
git pull origin main --allow-unrelated-histories
GIT_TRACE=1 git commit
Find the command causing the error, and then execute it in the command line to get the issue REF: https://gist.github.com/paolocarrasco/18ca8fe6e63490ae1be23e84a7039374
- Export PGP public key out of Keybase to GPG
keybase pgp list
If you have more than one, use the -q <keyID>
switch and parameter to specify the specific key
keybase pgp export -q keyID | gpg --import
- Export the PGP private key out of Keybase to GPG
keybase pgp export -q keyID --secret | gpg --import --allow-secret-key-import
- Mark user IDs associated with the key as ultimately trusted.
gpg --edit-key <keyID>
- at the
gpg>
prompt, type with the ID
uid X
- use the
trust
command to set the trust level for the specified ID - use
save