I have parent branch 'development' from which a child branch is cloned 'child_dev'.
Some commits have been done in 'development' after 'child_dev' was created, which is not reflected in the child branch.
I tried :
git checkout child_dev
git fetch origin
git rebase origin/development
This brought the new changes to the local child branch 'child_dev'. I made some changes to few other files and tried to push it using:
git push origin child_dev
but it showed error - (non-fast-forward)
Can anyone help me?