Answers for "setup git for linux"

10

how to install git on linux

#For linux
sudo apt-get install git
Posted by: Guest on February-01-2021
-1

git setup

echo "# your repo name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin your-repo-link.git
git push -u origin main
Posted by: Guest on May-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language