Skip to content

Instantly share code, notes, and snippets.

@linuxfemale
Created November 18, 2019 15:01
Show Gist options
  • Save linuxfemale/6015d45912e88dae477536636ee6c998 to your computer and use it in GitHub Desktop.
Save linuxfemale/6015d45912e88dae477536636ee6c998 to your computer and use it in GitHub Desktop.
git ssh add git clone git repo add
cd /home/sifat/.ssh/
ls -al ~/.ssh
ssh-keygen -t rsa -b 4096 -C "linuxfemale@gmail.com"
ls -al ~/.ssh
cat /home/sifat/.ssh/id_rsa.pub
copy key and add
https://github.com/settings/ssh/new
ssh -T git@github.com
cd Downloads/
git clone https://github.com/Jasmin-SMPP-Server-.git
cd Jasmin-SMPP-Server-/
git init
git add .
git commit -m "first commit"
[add new repository name]
git remote add origin git@github.com:DevSecOpsGuy/Jasmin-SMPP-Server-.git
git push -u origin master
git pull
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment