The Problem
Not sure what the Git workflow used here is, but develop, which usually represents the latest unstable version, should probably not be behind master, which usually represents the latest stable.
Further more, for the reasons mentioned above, the masterbranch should not be the main branch of the repository.
Suggested Solution
- Merge
master into develop
- Direct features/bugfixes to
develop from that point onward.
- Make
develop the main branch of the repository.
The Problem
Not sure what the Git workflow used here is, but
develop, which usually represents the latest unstable version, should probably not be behindmaster, which usually represents the latest stable.Further more, for the reasons mentioned above, the
masterbranch should not be the main branch of the repository.Suggested Solution
masterintodevelopdevelopfrom that point onward.developthe main branch of the repository.