Heads up, committers!

Given the conversation in "Thinking about branch names", I just pushed some new branches: 1.5 and 1.6. These has replace 1.5.3-SNAPSHOT and 1.6.2-SNAPSHOT, respectively.

There are a couple of ways you can get back to "normal":

1. git branch -m 1.5.3-SNAPSHOT 1.5 && git branch -m 1.6.2-SNAPSHOT 1.6 && git fetch --prune

or

2. git branch -d 1.5.3-SNAPSHOT && git branch -d 1.6.2-SNAPSHOT && git checkout -b 1.5 --track origin/1.5 && git checkout -b 1.6 --track origin/1.6

Both of these assume that you have no changes locally. I'll update the documentation on the website to reflect the new state of things. Please feel free to ask if there are any questions.

- Josh

Reply via email to