jPOS-EE Tip and Tail
· 2 min read
REQUIRED ACTIONS
If you already have a local copy of jPOS-EE (master or next), please note there are REQUIRED ACTIONS at the end of this blog post.
Following the same branch model we adopted for jPOS last December, jPOS-EE is now aligned with JEP-14 — The Tip & Tail Model of Library Development.
The rename is straightforward:
- The
nextbranch (jPOS-EE 3.x) becomesmain— the tip, where active development happens. - The
masterbranch (jPOS-EE 2.x) becomestail— the stable series, receiving only critical fixes.
REQUIRED ACTIONS
On your existing next branch:
git branch -m next main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
On your existing master branch:
git branch -m master tail
git fetch origin
git branch -u origin/tail tail
