ubuntu : execute 2 command at once code example
Example: 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
Use && to combine git commands
example:
git checkout branch_name && git fetch && git pull && git add --all && git commit -m "latest changes" && git push