summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-07-01Unified use of usage into extended_usage function.Ryan S. Arnold
Change-Id: Ib2cc750a88464da848e70ad72901b6a29d85e30e
2015-07-01Merge "Added help and usage text as well as unknown option handling"Yvan Roux
2015-07-01Added help and usage text as well as unknown option handlingRyan S. Arnold
If the script is invoked without any arguments the usage text will be printed. If the script is invoked with -u[sage] the usage text will be printed. If the script is invoked with -h[elp] the extended help text will be printed. If the script is invoked with a missing argument to an option an error will be printed. If the script is invoked with an unknown option a warning message will printed. Change-Id: Id835eab6ed57d9a243e9e011dd48ab9f4b5f0ebc
2015-06-30Merge "Clean-up: Remove useless 'git add' before a 'git commit -a'"Ryan Arnold
2015-06-30Clean-up: Remove useless 'git add' before a 'git commit -a'Yvan Roux
Change-Id: Ifd9d05f17161ca0540166c9f304c47747b23528e
2015-06-30Fix: The generated ChangeLog.linaro file must be part of the extract and notYvan Roux
the git tree. Change-Id: I7c849508cd78c6c8f1872a172bfa8405fe07974f
2015-06-29Test if GIT_REPO is a git repository and if it is the top-level GCC source ↵Ryan S. Arnold
directory This patch will cause execution to exit if the current working directory is not a git repository nor the top-level GCC source directory. This patch also reorders where the 'release' is set so that it's set after the options are parsed. Change-Id: Ib4c1475b062d485e2e1d847700dd47cc6131be07
2015-06-29Remove clean() call from die()Ryan S. Arnold
Avoid running git commands when the directory might not be a git repo. Change-Id: I876b55b94081911de9a8664bf88d80b930a206d4
2015-06-26Add .gitreview fileRyan S. Arnold
Change-Id: I25440546ba0ddc4ae1e4bee6e7f3a301b0ee03f1
2015-06-19Updates to tcwg-release.sh and new amend file: used to create ↵Christophe Lyon
gcc-linaro-snapshot-5.1-2016.06. Update tcwg-release.sh: * build the released compiler with '-j4' * new argument: -a path amend file for gitlog-to-changelog * new argument: -s spin number, defaults to 0 * new argument: -S when creating a snapshot * new argument: -d date used as --since argument when building ChangeLog * now builds from current directory * possibility to manually edit the generated ChangeLog (should be avoided, using amend file is better) Add amend file.
2015-06-16Add --no-tab-prefix option.Christophe Lyon
Our commit messages for backports are already correctly indented for ChangeLog output. This option enables to omit the default tab prefix.
2015-06-16Add --no-date-author option.Christophe Lyon
Our commit messages include the date and name of the author of the backport. There is no need to generate this information from the committer/date data stored by git. This option enables to omit such output.
2015-06-16Add --strip-change-id option.Christophe Lyon
Gerrit uses Change-Id: tags which we don't want to print in the generated ChangeLog. This new option enables to suppress this information.
2015-06-16Add gitlog-to-changelog, as copied from ↵Christophe Lyon
https://github.com/manuelbua/gitver/blob/master/gitlog-to-changelog
2015-06-03Add initial release scriptYvan Roux