git: the several ways to "--sign" (intermediate) anthony explains

Поділитися
Вставка
  • Опубліковано 10 гру 2024

КОМЕНТАРІ • 9

  • @sadhlife
    @sadhlife 2 роки тому +20

    PGP is proprietary tech, OpenPGP is the open spec derived from that tech, and GPG is the GNU tool implementing the same.

    • @anthonywritescode
      @anthonywritescode  2 роки тому +3

      and they all suck lol

    • @riotao
      @riotao 2 роки тому

      @@anthonywritescode well said

    • @sadhlife
      @sadhlife 2 роки тому +3

      agreed. though now I can use ssh to sign commits so thats neat

    • @antwanwimberly1729
      @antwanwimberly1729 6 місяців тому

      @@anthonywritescodewhat makes em suck?

  • @levblit3721
    @levblit3721 2 роки тому +8

    You probably did have the signoff, you ran cat-file against the previous commit :)

  • @essamgouda1609
    @essamgouda1609 2 роки тому +1

    Love the diversity in your content 👏🏾👏🏾♥️

  • @sethmlarson
    @sethmlarson 2 роки тому +6

    If you're going to do GPG signing of stuff in git it's nice to configure auto-signing of commits and tags via:
    $ git config --global commit.gpgsign true
    $ git config --global tag.gpgSign true
    Note it's a lowercase s for commits and an uppercase S for tags... :) Then you don't have to remember to type --gpg-sign/-S on git commit or -s/--sign on git tags

  • @VaishnavP
    @VaishnavP 6 місяців тому

    Thank you so much