I cloned a remote rep, master and made some changes. Before pushing changes admin has created Development branch.
Now "git remote show origin" command is showing the following ambiguous HEAD branch.
HEAD branch (remote HEAD is ambiguous, may be one of the following):
development
master
Remote branches:
development new (next fetch will store in remotes/origin)
master tracked
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)
I already made changes to cloned master. Now, how to push changes to the newly created Development branch ?
Thanks