Skip to content

Instantly share code, notes, and snippets.

@linuxkeepup
Last active August 29, 2022 16:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save linuxkeepup/afd55caf0272a3891639318a5ca362c4 to your computer and use it in GitHub Desktop.
Save linuxkeepup/afd55caf0272a3891639318a5ca362c4 to your computer and use it in GitHub Desktop.
The A-Z Git Development Service
Please send your query for Git Remote Support Service:
Telegram: https://t.me/montasir2022
WhatsApp: https://web.whatsapp.com/send?number=01768231949
Email: linuxkeepup@gmail.com
#!/bin/bash
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
git --version
sudo git config --global user.name "name"
sudo git config --global user.email name@gmail.com
sudo apt update
sudo -i
ssh-keygen -t rsa -b 4096 -C "name@gmail.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
cat /root/.ssh/id_rsa.pub
#git #github #gitlab #GitSupport
@linuxkeepup
Copy link
Author

Screenshot from 2022-08-18 23-04-41

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment