Skip to content

crgimenes/atomic

Repository files navigation

Atomic

GoDoc Go project version MIT Licensed

Create RSA key pair

ssh-keygen -t rsa
ssh -o PreferredAuthentications=password -o PubkeyAuthentication=no localhost -p 2200
supported key types
ssh-keygen -t ecdsa -b 521
ssh-keygen -t ed25519

Contributing

  • Fork the repo on GitHub
  • Clone the project to your own machine
  • Create a branch with your modifications git checkout -b fantastic-feature.
  • Then commit your changes git commit -m 'Implementation of new fantastic feature'
  • Make a push to your branch git push origin fantastic-feature.
  • Submit a Pull Request so that we can review your changes