forked from echonest/pyechonest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GITMOVE
34 lines (26 loc) · 950 Bytes
/
GITMOVE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
We're moving pyechonest from SVN to git, and hosting it on Github.
The old Google Code repository will be deprecated but otherwise
left alone for the short term, and we'll delete it eventually.
All history was maintained in the move.
How to do a release:
# first update the documentation submodule
# this will update the gh-pages (pyechonest documentation) available at:
# http://echonest.github.com/pyechonest/
$ cd doc
$ make html
$ cd build/html
# if you haven't already, you need to make sure the submodule is on the
# gh-pages branch
$ git checkout --track -b gh-pages origin/gh-pages
$ git commit -a -m 'made some changes, yo'
$ git push
# then commit the rest of your changes from the root of the repo
$ cd ../
$ git commit -a -m 'made some changes, yo'
$ git push
# make a tag
$ git tag -a 4.2.16 -m "4.2.16 tag with feature A feature B etc"
$ git push --tags
# create the zip and egg files
$ ./mkrelease ~/
# upload them to github