1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

building_release_archive: add some steps and clean up

This commit is contained in:
Jon Trulson 2014-03-01 17:01:12 -07:00
parent 3610364f13
commit ded1213316

View file

@ -1,12 +1,24 @@
To build the release archive: - Update HISTORY file, commit
- First tag the release, say 2.2.0c - First tag the release, say 2.2.0c
git tag 2.2.0c
Then push the tag:
git push --tags
- build the release archive:
git archive -o /tmp/cde-src-[version tag].tar.gz [version tag] \ git archive -o /tmp/cde-src-[version tag].tar.gz [version tag] \
--prefix cde-[version tag]/ --prefix cde-[version tag]/
where [version tag] is something like 2.2.0c where [version tag] is something like 2.2.0c
Then push the tag: ## look into signed tags?
git tag -s 2.2.1 -m '2.2.1 release'
git push --tags