On the internet, nobody knows you’re human.

  • 0 Posts
  • 14 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle



  • Wilker@lemmy.blahaj.zonetoMemes@lemmy.mlMaths 🗿
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    10 months ago

    there’s still some interesting parts to note in the comic. i personally like the slightly tilted view in the first panel used to emphasize the surprise of the moment for example.

    that said, the original version of the comic is a fucking joke. i can’t imagine even my mother taking that one seriously x.x










  • have at it!

    taken from Gitlab’s manual page for creating a key, but i wonder what else could be done to expand on it.

    #~/.gitconfig
    [includeIf "hasconfig:remote.*.url:https://gitlab.com/**"]
    path = /path/to/gitlab.gitconfig
    [includeIf "hasconfig:remote.*.url:https://github.com/**"]
    path = /path/to/github.gitconfig
    

    #example gitlab gitconfig from the included path
    [user]
    name = Your Name
    email = 0000000-YourName@users.noreply.gitlab.com
    signingkey = 0000999988887777
    
    [commit]
    gpgsign = true
    

    if all works well, Git should be able to automatically use the selected key depending on the repo’s stated remote server.