• poVoq@slrpnk.net
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    18 hours ago

    Why the need to push via ssh? I am genuinely wondering, since you can easily push without having that enabled at all.

        • Mihies@programming.dev
          link
          fedilink
          arrow-up
          2
          ·
          9 hours ago

          Oh, no. It’s more secure than https if done properly (i.e. backed by hardware key and/or a quality password) I’d say.

    • Jeena@piefed.jeena.net
      link
      fedilink
      English
      arrow-up
      5
      ·
      18 hours ago

      Because otherwise I will need to set up a different way of logging in to authenticate on every computer. I’m using ssh for every git server. How do you authenticate, with a different access token for each git server in ~/.gitconfig?

      • poVoq@slrpnk.net
        link
        fedilink
        arrow-up
        1
        ·
        10 hours ago

        Ok, I understand that this is a bit inconvenient, but you can use a password manager for the required git push logins.

        But you are not concerened that someone compromising your ssh keys gets full access to all your repos?

        • Jeena@piefed.jeena.net
          link
          fedilink
          English
          arrow-up
          2
          ·
          9 hours ago

          How would they get my private key? I mean if they already have access to my private key on my computer then I have much bigger problems than them having access to the anyway public git repos.

          Perhaps I’m misunderstanding the thread model you have, but isn’t ssh the standard way of accessing git repos because it is so much more secure compared to a username and password?

          • poVoq@slrpnk.net
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            44 minutes ago

            They can impersonate you and push code into the repos in your name with a high likelyhood of you not noticing it.

            The typical hobby dev machine isn’t particularly secure and for sure less secure than the typical server. Accessing everything from there with a single key is a pretty gaping security hole IMHO.

            There seems to be this common misconception that ssh keys are more secure than passwords, but that is only true when you use really weak passwords that you keep in your head instead of a password manager.

            If you want to actually increase your security then you need to set up a second factor auth with a seperate device.