Can you explain me how to use git in case, when I have access to repository:
How to download repository
# download a repository
git clone
How to push changes in selected branch
# push changes to remote branch
# assuming you are on the master branch right now
git push origin master
How to select branch to push
# push any desired branch to remote
git push -u origin local_branch_name:remote_branch_name