Last active
December 8, 2021 17:17
-
-
Save cloudybdone/b52d9c96d5e41033720d2aa16848ddd2 to your computer and use it in GitHub Desktop.
I Will Setup Git Into Any Linux Destro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you need anything related with Git Linux contact: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHxboQrc | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| #!/bin/bash | |
| sudo add-apt-repository ppa:git-core/ppa | |
| sudo apt update | |
| sudo apt install git | |
| sudo -i | |
| ssh-keygen -t rsa -b 4096 -C "cloudybdone@gmail.com" | |
| eval "$(ssh-agent -s)" | |
| ssh-add ~/.ssh/id_rsa | |
| cat /root/.ssh/id_rsa.pub | |
| #git #github #gitlab #git_setup | |
| Play List: https://www.youtube.com/channel/UChUJekQmef1PcnamCTg0CVg/playlists |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

