I was trying to revert my last merge commit in my local branch and followed the below command as per This
Here I created new branch apitest/OEES-3752-containerisation-api-tests
off apitest/OEES-3752-containerisation-api-tests
first, below is the logs of newly created branch
Logs:
λ git log
commit 337c26b49f5a7782917e42b20722363fc38a7ba4 (HEAD -> apitest/OEES-3752-containerisation-api-tests, origin/feature/OEES-3752-release-api-test, feature/OEES-3752-release-api-test)
Merge: 97613fea1 00b69975c
Author: xxxxxx
Date: Fri Mar 19 11:34:31 2021 +1100
Merge branch 'develop/app' of https://github.servicexxxxxx into feature/OEES-3752-release-api-test
commit 97613fea1b4879caa4131f58be10535ac7a7a25a
Author: xxxx
Date: Thu Mar 18 08:14:40 2021 +1100
OEES-3752 Reverted back changes done for pipeline testing
Command:
Repo\app (apitest/OEES-3752-containerisation-api-tests)
λ git revert -m 1 337c26b49f5a7782917e42b20722363fc38a7ba4
Already up to date!
On branch apitest/OEES-3752-containerisation-api-tests
nothing to commit, working tree clean
Further;
c:\Repo\app (feature/OEES-3752-release-api-test -> origin)
λ git show --name-only 337c26b49f5a7782917e42b20722363fc38a7ba4
commit 337c26b49f5a7782917e42b20722363fc38a7ba4 (HEAD -> feature/OEES-3752-release-api-test, origin/feature/
OEES-3752-release-api-test, apitest/OEES-3752-containerisation-api-tests)
Merge: 97613fea1 00b69975c
Author: xxxx
Date: Fri Mar 19 11:34:31 2021 +1100
Merge branch 'develop/app' of https://github.servicexxxxxx/app into feature/OEES-3752-release-api-test
What am I missing here?