<feed xmlns='http://www.w3.org/2005/Atom'>
<title>brew/Library/Homebrew/dev-cmd, branch 0.9.8</title>
<subtitle>🍺 The missing package manager for macOS</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/'/>
<entry>
<title>bump-formula-pr: fix typo in spec existence check</title>
<updated>2016-03-28T10:22:47+00:00</updated>
<author>
<name>Christian Moritz</name>
</author>
<published>2016-03-27T22:29:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=a87eb23a3b613de803f249aee2c9941f5190aef6'/>
<id>a87eb23a3b613de803f249aee2c9941f5190aef6</id>
<content type='text'>
Closes Homebrew/homebrew#50472.

Signed-off-by: Mike McQuaid &lt;mike@mikemcquaid.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes Homebrew/homebrew#50472.

Signed-off-by: Mike McQuaid &lt;mike@mikemcquaid.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>bump-formula-pr: add new command.</title>
<updated>2016-03-28T10:22:47+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2016-03-17T05:58:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=ca2abb2be6686a8f2e7c64f5d334ab70be97a1b7'/>
<id>ca2abb2be6686a8f2e7c64f5d334ab70be97a1b7</id>
<content type='text'>
Add a new developer command (i.e. requires `HOMEBREW_DEVELOPER` set in
your environment) to bump the version of a formula and create a new pull
request with the new version.

Closes Homebrew/homebrew#49848.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a new developer command (i.e. requires `HOMEBREW_DEVELOPER` set in
your environment) to bump the version of a formula and create a new pull
request with the new version.

Closes Homebrew/homebrew#49848.
</pre>
</div>
</content>
</entry>
<entry>
<title>update-test: allow setting start commit</title>
<updated>2015-12-19T14:05:30+00:00</updated>
<author>
<name>Xu Cheng</name>
</author>
<published>2015-12-19T10:18:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=203000cee6432ba95c60db1c98c8fd9a2efa5532'/>
<id>203000cee6432ba95c60db1c98c8fd9a2efa5532</id>
<content type='text'>
To use origin/master as start commit
  brew update-test

To use &lt;sha1&gt; as start commit
  brew update-test --commit=&lt;sha1&gt;

To use commit at &lt;date&gt; as start commit
  brew update-test --before=&lt;date&gt;

Also print start/end commit for debug purpose
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To use origin/master as start commit
  brew update-test

To use &lt;sha1&gt; as start commit
  brew update-test --commit=&lt;sha1&gt;

To use commit at &lt;date&gt; as start commit
  brew update-test --before=&lt;date&gt;

Also print start/end commit for debug purpose
</pre>
</div>
</content>
</entry>
<entry>
<title>update-test: use git clone --local instead of copy</title>
<updated>2015-09-18T06:24:54+00:00</updated>
<author>
<name>Xu Cheng</name>
</author>
<published>2015-09-16T07:15:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=a25fc67813e5b2fff7c99edcb0de591ae8bed5e5'/>
<id>a25fc67813e5b2fff7c99edcb0de591ae8bed5e5</id>
<content type='text'>
The .git directory in BrewTestBot is huge(1GB) which results to poor
performance of `brew update-test`. Therefore, let's use `git clone
--local` here which will create hard symlink to boost performance.

Closes Homebrew/homebrew#44005.

Signed-off-by: Xu Cheng &lt;xucheng@me.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The .git directory in BrewTestBot is huge(1GB) which results to poor
performance of `brew update-test`. Therefore, let's use `git clone
--local` here which will create hard symlink to boost performance.

Closes Homebrew/homebrew#44005.

Signed-off-by: Xu Cheng &lt;xucheng@me.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix update-test</title>
<updated>2015-09-14T13:07:37+00:00</updated>
<author>
<name>Xu Cheng</name>
</author>
<published>2015-09-14T07:19:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=6792847fc1534b6471ed08e82bac66a01fe1c113'/>
<id>6792847fc1534b6471ed08e82bac66a01fe1c113</id>
<content type='text'>
Previously, `brew update-test` is run against master branch of local
repo. However, we test PR using a detached branch in `brew test-bot`.
The result is `brew update-test` will always be up-to-date in `test-bot`.

To fix it, we create two local copies of git repo, and set master branch
to start and end sha1 correspondingly. After that, `brew update` will be
run to simulate the change between start and end sha1.

Closes Homebrew/homebrew#43902.

Signed-off-by: Xu Cheng &lt;xucheng@me.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, `brew update-test` is run against master branch of local
repo. However, we test PR using a detached branch in `brew test-bot`.
The result is `brew update-test` will always be up-to-date in `test-bot`.

To fix it, we create two local copies of git repo, and set master branch
to start and end sha1 correspondingly. After that, `brew update` will be
run to simulate the change between start and end sha1.

Closes Homebrew/homebrew#43902.

Signed-off-by: Xu Cheng &lt;xucheng@me.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>update_test: run update verbosely.</title>
<updated>2015-09-14T07:00:50+00:00</updated>
<author>
<name>Mike McQuaid</name>
</author>
<published>2015-09-14T07:00:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=deca462d9ee421253dd57cec2002edfe033377d9'/>
<id>deca462d9ee421253dd57cec2002edfe033377d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update-test: better output</title>
<updated>2015-09-13T05:08:41+00:00</updated>
<author>
<name>Xu Cheng</name>
</author>
<published>2015-09-13T05:08:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=2c4eb4b5039edd91c4d0def5719e8219609baeff'/>
<id>2c4eb4b5039edd91c4d0def5719e8219609baeff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>aspell-dictionaries: move to dev-cmd</title>
<updated>2015-09-12T17:03:38+00:00</updated>
<author>
<name>Xu Cheng</name>
</author>
<published>2015-09-12T17:03:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=e6f260de278b55940a300a3b1536ff45b4a5755f'/>
<id>e6f260de278b55940a300a3b1536ff45b4a5755f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add dev-cmd folder</title>
<updated>2015-09-12T11:15:45+00:00</updated>
<author>
<name>Xu Cheng</name>
</author>
<published>2015-09-10T13:20:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/brew/commit/?id=ce390b9bd9648f1edf856df55e121c7d75cfdedc'/>
<id>ce390b9bd9648f1edf856df55e121c7d75cfdedc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
