I am very new to git. I am working with a remote repo. I set up my my working environemnt like this:
git clone git@... /folder/
git branch -v
# origin git@... (fetch)
# origin git@ ... (push)
git branch someLocalBranch
What would I do if I want to pull changes from the remote master
into my local master
? And, how would I go on about pushing
changes from someLocalBranch
into a remote branch
? That remote branch
can either exist, or does not exist yet.