You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@accumulo.apache.org by Josh Elser <jo...@gmail.com> on 2014/09/27 04:45:36 UTC

Updated branch names

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