2011-04-02から1日間の記事一覧

CQPerl で Rational ClearQuest API を利用した場合に The following characters are invalid で強制終了してしまう

Windows 上で CQPerl を使って Rational ClearQuest の自動クエリーなどのスクリプトを書いた場合に、以下のエラーでスクリプトが強制終了して困っていた。 String returned from the CQPerl is not in the local code page, "932 (Japanese (Shift-JIS))". …

git clone --bare で clone したレポジトリに remote を設定する

git clone すると通常は clone 元が origin に設定されるので、git push でパラメータなしで push できるが、git clone --bare で clone すると origin の設定が必要なようだ。 例 $ git clone --bare git@github.com:/.git $ cd .git $ git push fatal: No …