Skip to content

Instantly share code, notes, and snippets.

View fabiofrasson's full-sized avatar
:octocat:

Fabio Frasson fabiofrasson

:octocat:
  • VILT Group
  • Brazil
  • 10:25 (UTC -03:00)
View GitHub Profile
@etoxin
etoxin / git.md
Last active May 31, 2024 11:58
GIT Bash Commands

search (regex)

git grep "regex"

list all branches

git branch -a
@leocomelli
leocomelli / git.md
Last active July 22, 2024 12:48
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@grenade
grenade / 01-generate-ed25519-ssh-key.sh
Last active July 11, 2024 10:06
generate ed25519 ssh and gpg/pgp keys and set file permissions for ssh keys and config
#!/bin/bash
# generate new personal ed25519 ssh keys
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <rthijssen@gmail.com>"
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_robtn -C "rob thijssen <rob@rob.tn>"
# generate new host cert authority (host_ca) ed25519 ssh key
# used for signing host keys and creating host certs
ssh-keygen -t ed25519 -f manta_host_ca -C manta.network