git push --set-upstream origin <branch_name>_test
--set-upstream
sets the association between your local branch and the remote. You only have to do it the first time. On subsequent pushes you can just do:
git push
If you don't have origin
set yet, use:
git remote add origin <repository_url>
then retry the above command.