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 maingit pull origin main --allow-unrelated-historiesGIT_TRACE=1 git commitFind 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 listIf 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
trustcommand to set the trust level for the specified ID - use
save