I have two questions:
Does
githubfor Windows use the--no-ffflag for merging ?I have a few branches:
masterbranch: holds the latest official versiondevelopmentbranch: holds the lastest dev version- "feature" branches, namely
dbObjectsandstartMenu
Now, I have updated dbObjects and startMenu and merged them into development.
The development branch works just fine. However, the two branches (dbObject and startMenu) don't have the latest version: startMenu doesn't have dbObject's updates and vice-versa.
I have more development on startMenu and dbObjects branches to do, so it's important for me to update those branches as well. Should I merge development into each one of them, or is there some other way to do it in Git?
Thanks!
EDIT: startMenu and dbObject will be shared on origin. is it safe to use re-base in that case?