I have cloned a remote branch A
from github, and checked out a local branch feature/test
from it
For example -
git clone A
git checkout -b feature/test
Now i started working on feature/test
and did some changes in it and commited but not pushed. Now the remote branch A
has been updated with latest commits from someone, so i want to update my local branch feature/test
and take these latest changes from remote A
. How can i do this with out losing my local changes.
Note - my local changes from branch feature/test
has already been commited but not pushed.