ssh-keygen — authentication key generation, management and conversion

ahiliation@pluto:~$ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/home/ahiliation/.ssh/id_rsa): Created directory ‘/home/ahiliation/.ssh’. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /home/ahiliation/.ssh/id_rsa. Your public key has been saved in /home/ahiliation/.ssh/id_rsa.pub. The key fingerprint is: 70:7f:99:30:63:19:1e:ea:0f:af:ce:7d:dd:e5:55:9a ahiliation@pluto.infoclub.in The key’s randomart image is: …

Git server and SSH Debian HOWTO

the following content may not be accurate and detailed Server 1. apt-get install git 2. apt-get install git-daemon-sysvinit 3. mkdir -p /home/user/project.git 4. cd /home/user/project.git 5. git init 6. git config –global user.name “Your Name” 7. git config –global user.email “you@example.com” 8. git commit -a 9. touch .git/git-daemon-export-ok 10. git config –bool core.bare true 11. …