bw export だと全部エクスポートされてしまうけど、特定のコレクションの中身だけ export したい。
bw login
bw unlock
# 一応| using System.Collections; | |
| using UnityEngine; | |
| public class NestCoroutine : MonoBehaviour | |
| { | |
| private IEnumerator _coroutine; | |
| private int _count; | |
| private int Count | |
| { | |
| get |
| git-flow っぽい git のログから pull requests を再現する。 | |
| ``` | |
| git log master --reverse --grep 'feature.*into develop' --format='%p %s' --merges --after=2017-03-23 --before=2017-06-01 | ruby -pe "\$_.gsub! /Merge branch '(.+)'.*/, '\\1'" | |
| ``` | |
| で、特定期間の develop ブランチへマージしたログを切り出す。 | |
| これを make_pulls.rb に渡すと、そのマージコミットを再現する pull req を作る。 | |
| 何かエラーが出たら止まるので手動で対応する。 :innocent: |