I have a local repo that I cloned from a bundle. I received the repo as a git bundle. After unbundling it and created my own branch, I noticed some bug on the code and notified the sender. They fixed the error and said I can pull the changes on the master branch.
When I switched to the master branch locally, I pulled and it says its 'Already Up to Date'. How do I know pull the remote changes from to a local repo I unbundled?
A Git bundle works as a read-only repository. The sender fixes the bug on their own repository. It seems you cannot directly access to their repository.
You have several options:
git pull /path/to/new/bundle master
.git apply
or git am
.