My repo originally said, "Already in the know."
MINGW64 (feature/Issue_123) $ git merge develop
Output:
Already up to date.
But the code is not updated & it shows some differences in some files.
MINGW64 (feature/Issue_123) $ git diff develop
Output:
diff
However, merging corrects this.
MINGW64 (feature/Issue_123) $ git merge origin/develop
Output:
Updating c7c0ac9..09959e3 Fast-forward 3 files changed, 157 insertions(+), 92 deletions(-)
I confirmed this again with the diff .
MINGW64 (feature/Issue_123) $ git diff develop
No code differences now!
source share