I have two questions:
Does
github
for Windows use the--no-ff
flag for merging ?I have a few branches:
master
branch: holds the latest official versiondevelopment
branch: holds the lastest dev version- "feature" branches, namely
dbObjects
andstartMenu
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?