Answers for "add/push file in git"

0

add/push file in git

# add and commit first
git push -u origin main
Posted by: Guest on January-31-2022
0

add/push file in git

git reset --mixed origin/main
git add .
git commit -m "This is a new commit for what I originally planned to be amended"
git push origin main
Posted by: Guest on January-31-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language