I had forked a repository few months ago. I made some modifications on development branch and made a pull request, which was merged later to repo from which it was forked.
Now I want to make some more modifications, but the repository from which I had forked has many updates.
I need those updates in the forked repo in my GitHub account. I tried doing all the below steps:
$ git clone git@github.com:rupali/jira-plugin.git
$ cd jira-plugin && \
git remote add jira-upstream git@github.com:jenkinsci/jira-plugin.git
$ git fetch jira-upstream
$ git merge jira-upstream/master
But still I cannot see any changes in the forked repository in my account. It still shows the same commit which was present few months before.
No clue where I am making mistake. Any idea what is wrong here?