Take note, this is how you deal with pulling updates from upstream that result in commits getting deleted.
git fetch --all
git reset --hard origin/feature/my-feature
git pull origin feature/my-feature
Take note, this is how you deal with pulling updates from upstream that result in commits getting deleted.
git fetch --all
git reset --hard origin/feature/my-feature
git pull origin feature/my-feature