Answers for "git multiple commands one line"

1

git multiple commands one line

Use && to combine git commands

example:
git checkout branch_name && git fetch && git pull && git add --all && git commit -m "latest changes" && git push
Posted by: Guest on December-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language