garysimpson.dev
Mobile development with swift and flutter

Git Fast-Forward Fail

April 12, 2025 at 8:28AM

Got the following git error fatal: Not possible to fast-forward, aborting.

After struggling with a git error that cause my command to merge the latest in to my branch...

  • git pull origin develop

I ended up finding a soution that at least got me going again.

  • git pull origin develop --rebase

Would love to knoa why the error is occuring but this gets me going for now.


Happy Coding ;-)