🔗1. 🔗Match the tasks on the right with the appropriate git command listed on the left.git remote -v List your remote repos git remote add <remote repo name> <remote repo URL> Add a new remote repo git pull --ff-only <remote repo name> <branch> Synch a branch of your origin repo with your local repo git push <remote repo name> <branch> Synch a branch of your local repo with the upstream git branch -D <branch> Delete a feature branch from your local repo git push -d <remote repo name> <branch> Delete a feature branch from your origin Hint.Note that the tasks listed are in approximately the same order as they appear in the sections of this chapter.