Complete the command to push the current branch to the remote repository.
git push origin [1]Using HEAD tells Git to push the current branch you are on to the remote.
Complete the command to create and push a new branch named 'feature' to the remote.
git push origin [1]The syntax feature:feature pushes your local 'feature' branch to the remote 'feature' branch.
Fix the error in the command to push a new branch 'dev' to remote 'origin'.
git push [1] devThe correct syntax is git push origin dev where 'origin' is the remote and 'dev' is the branch.
Fill both blanks to push the local branch 'test' to remote branch 'testing'.
git push [1] [2]:testing
Use git push origin test:testing to push local 'test' branch to remote 'testing' branch.
Fill the blanks to push the current branch to remote and set upstream tracking.
git push --set-upstream [1] [2]
HEAD.Use git push --set-upstream origin HEAD to push the current branch to the remote origin and set the upstream branch to track.