Answers for "how created git"

0

new git

echo "# iT-Support" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/amanj8sdiq/iT-Support.git
git push -u origin main
Posted by: Guest on August-08-2021
1

how to use git

cd project_path       #Go to your local project
git init              #Initialize

git commit my_file    #First part of saving your file to the web
git push origin main  #Now your changes are on the web
Posted by: Guest on November-29-2021

Code answers related to "how created git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language