Answers for "git how to"

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
0

git how to

git push
git pull
git branch
git commit -m "message"
git clone
git init
git checkout
git remote add
git status
git diff
git rebase
Posted by: Guest on February-04-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language