文書の表示以前のリビジョンバックリンク文書の先頭へ この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。 ====== ビルドスクリプトの修正手順 ====== * plamo.linet.gr.jp 上に松木さんが作った git リポジトリ上のビルドスクリプトやパッチを修正する手順 ===== 準備 ===== - git を使う準備 (User/Email設定) <code>git config --global user.email "your_email@example.com" git config --global user.name "KATOH Yasufumi"</code> (もちろん自分の情報で) - git clone する <code>git clone karma(_at_)plamo.linet.gr.jp:/home/matsuki/work/Plamo-src.git</code> (karma のところは自分のアカウントで (_at_) は @ に) - git send-email の設定 <code>[sendemail] from = KATOH Yasufumi <karma@jazz.email.ne.jp> smtpserver = localhost smtpserverport = 25</code> (Gmail を使った方法は http://d.hatena.ne.jp/unpush/20110216/1297869753 辺りに載ってる) ===== 修正 ===== - 修正用ブランチを作成 <code>cd path_to_repository git checkout -b Apache_2_4_6_Work git branch * Apache_2_4_6_Work master </code> - 修正 <code>(修正) git add (変更ファイル) git commit</code> ===== パッチの作成 ===== * http://d.hatena.ne.jp/janus_wel/20090210/1234441680 このあたりが詳しい - パッチファイルの作成 <code>git format-patch -n -M origin/master -s -o ~/outgoing</code> (origin の master ブランチとの差分を outgoing ディレクトリに出力せよ) - 確認 <code>ls ~/outgoing/ 0001-Update-to-httpd-2.4.6.patch</code> - メール送信 <code>git send-email --annotate outgoing/0001-Update-to-httpd-2.4.6.patch</code> (--annotate で送るメールを確認.後は質問してくるので答える) linux/plamo/ビルドスクリプトの修正手順.txt 最終更新: 2013/08/09 05:09by tenforward