Answers for "committing on github"

1

committing on github

# make sure to do: git config --global user.name "username" 
# git config --global user.email "[email protected]"

git init -b main
git add .
git commit -m "message"
git push origin main
Posted by: Guest on February-20-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language