README.git 720 B

123456789101112131415161718192021
  1. README.git
  2. Generating releases from git a very simple process;
  3. 1) Edit the file "Makefile". Changing the "VERSION" line to the new version.
  4. 2) Do a "git commit" just for the version number change.
  5. 3) Then do a "make test-archive".
  6. That will make a file in the current directory gnu-efi-$VERSION.tar.bz2 ,
  7. with its top level directory gnu-efi-$VERSION/ and the source tree under that.
  8. Once you've tested that and you're sure it's what you want to release,
  9. 4) Do "make archive", which will tag a release in git and generate a
  10. final tarball from it.
  11. You then push to the archive, being sure to include the tag:
  12. 5) "git push origin master:master --tags"
  13. And upload the archive wherever it's supposed to go.