aboutsummaryrefslogtreecommitdiffstats
path: root/tool/lib/vcs.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Separated VCS.define_options for common VCS optionsNobuyoshi Nakada2019-09-071-17/+16
|
* VCS::GIT no longer accepts remote repositoryNobuyoshi Nakada2019-09-061-4/+2
|
* Separate VCS::DEBUG_OUTNobuyoshi Nakada2019-09-051-6/+10
|
* --date=iso-local does not work with old gitNobuyoshi Nakada2019-09-031-2/+8
|
* Use -z option for git-logNobuyoshi Nakada2019-09-031-3/+1
|
* Extract git commit log as raw format like git-svn for ChangeLogNobuyoshi Nakada2019-09-021-24/+22
|
* Support packaging different branch/tagNobuyoshi Nakada2019-09-011-4/+9
|
* Fetch commit notesNobuyoshi Nakada2019-09-011-0/+1
|
* Support git tagsNobuyoshi Nakada2019-09-011-4/+8
|
* Remove files/directories for git/github which are committed [ci skip]Nobuyoshi Nakada2019-08-311-4/+2
|
* Suppress uninitialized instance variable warnings [ci skip]Nobuyoshi Nakada2019-08-301-4/+2
|
* Support revision in git-svn logNobuyoshi Nakada2019-08-301-6/+29
|
* Updated comment of VCS#get_revisions [ci skip]Nobuyoshi Nakada2019-08-301-2/+5
|
* Ensure the last and changed revisions as IntegersNobuyoshi Nakada2019-08-281-2/+2
|
* Short revision of SVN should be an IntegerNobuyoshi Nakada2019-08-271-1/+1
|
* Limit ChangeLog entriesNobuyoshi Nakada2019-08-261-3/+8
| | | | | Since the previous release date, when the starting message is not found.
* `local_path?` is a class method [ci skip]Nobuyoshi Nakada2019-08-251-1/+1
|
* tool/lib/vcs.rb: explicitly fail when notes/commits is not availableYusuke Endoh2019-08-251-0/+5
|
* Revert workaroundKazuhiro NISHIYAMA2019-08-251-11/+1
|
* Simplified f13a00f5b4 [ci skip]Nobuyoshi Nakada2019-08-251-9/+3
|
* Export all commits as ChangeLog when no starting commit is found [ci skip]Nobuyoshi Nakada2019-08-251-3/+10
|
* Add workaround (2nd try)Kazuhiro NISHIYAMA2019-08-251-1/+1
| | | | | | | | | | | | | https://rubyci.org/logs/rubyci.s3.amazonaws.com/gentoo/ruby-master/log/20190824T153002Z.fail.html.gz ``` /home/gentoo/chkbuild/tmp/build/20190824T153002Z/ruby/tool/lib/vcs.rb:577:in `export_changelog': cannot find the beginning revision of the branch (RuntimeError) from ./tool/make-snapshot:353:in `block in package' from ./tool/make-snapshot:351:in `chdir' from ./tool/make-snapshot:351:in `package' from ./tool/make-snapshot:523:in `block in <main>' from ./tool/make-snapshot:523:in `collect' from ./tool/make-snapshot:523:in `<main>' ```
* Add workaround for some CIsKazuhiro NISHIYAMA2019-08-241-1/+9
| | | | | | | | | | | | | https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian8/ruby-master/log/20190824T093005Z.fail.html.gz ``` branches: * trunk remotes/origin/trunk ``` and ``` fatal: Remote branch master not found in upstream origin ```
* Add debug printKazuhiro NISHIYAMA2019-08-241-0/+1
| | | | | | | | matser branch not found on some CIs https://rubyci.org/logs/rubyci.s3.amazonaws.com/debian9/ruby-master/log/20190824T063005Z.fail.html.gz ``` fatal: Remote branch master not found in upstream origin ```
* Detect VCS from the current directory by default [ci skip]Nobuyoshi Nakada2019-08-131-1/+1
|
* Push commits notes too [ci skip]Nobuyoshi Nakada2019-08-131-3/+8
|
* Include commits notes in ChangeLogNobuyoshi Nakada2019-08-121-1/+1
|
* Separate VCS::GIT#upstreamNobuyoshi Nakada2019-07-301-4/+9
|
* Put vcs .rb to under the lib direcotory.Hiroshi SHIBATA2019-07-151-0/+669
Because it's the common library for tool files.