alt-depgraph-100603
「文節のみな」(ぶんせつのみな) が1文節にできない。
「文節な」(ぶんせつな) は1文節に出来る。
――もしデンマークに負けたら、そのときの心境は。
$ git clone git://git.example.com/hoge.git
$ cd hoge
;; base にしたい commit を checkout
$ git checkout [base にしたい commit-id]
;; 自分が作業するためのブランチを作成
$ git checkout -b mybranch
...
;; 「ファイルを更新し commit」を繰り返す
...
;; パッチ作成
;; 自分が mybranch に commit した分をすべて番号付きで "出力先ディレクトリ" に出力
$ git format-patch -o [出力先ディレクトリ] master..mybranch
相変わらず make update_params0 ; make update_params ; make update_params2 ; make update_params2 が完了するまでに80分くらいかかるし……。お疲れ様です。
現状、過去版、安定版、試験版、の3系列を持っているから、 この更新だけで4時間以上は消費してしまう……。
誤:
% gpatch -p1 -N < ../alt-depgraph-100603/alt-depgraph_*
../alt-depgraph-100603/alt-depgraph_*: Ambiguous.
%
正その1:
$ cat ../alt-depgraph-100603/alt-depgraph_* | gpatch -p1 -N
正その2:bourne shell の場合。
$ for FILE in ../alt-depgraph-100603/alt-depgraph_*
> do
> gpatch -p1 -N < $FILE
> done
calctrans/divide.sh
depgraph/mkdepword
chmod +x 忘れ?