Skip to content

Instantly share code, notes, and snippets.

@LinuxFintech
Last active December 10, 2020 11:19
Show Gist options
  • Save LinuxFintech/440d7b80dc096dadab4655082259c24a to your computer and use it in GitHub Desktop.
Save LinuxFintech/440d7b80dc096dadab4655082259c24a to your computer and use it in GitHub Desktop.
Git Distributed Version-Control System
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