Last active
December 10, 2020 11:19
-
-
Save LinuxFintech/440d7b80dc096dadab4655082259c24a to your computer and use it in GitHub Desktop.
Git Distributed Version-Control System
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, GitHub and GitLab contact with me: | |
Email: [email protected] | |
Telegram:LinuxFintech | |
Skype: https://join.skype.com/Xgxp7aNBOItS | |
Imo: +8801735917013 | |
WhatsApp: +8801735917013 | |
For setup and configure git run below commands: | |
sudo add-apt-repository ppa:git-core/ppa | |
sudo apt update | |
sudo apt install git | |
sudo git config --global user.name "masum" | |
sudo git config --global user.email [email protected] | |
sudo apt update | |
git --version | |
sudo git config --list | |
sudo -i | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/id_rsa | |
# Add SSH Key the GitHub | |
cat /root/.ssh/id_rsa.pub | |
#Git #git #github #gitlab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment