2009-05-29から1日間の記事一覧

gitメモ - branch編

git

branchの作成 $ git checkout -b branch_1 branch一覧を表示 $ git branch * branch_1 master branchを移動 $ git checkout master $ git branch branch_1 * master branchの削除 $ git branch -d branch_1 リモートのbranch一覧を見る $ git branch -r orig…

jruby-debug

JRubyへのgemからのruby-debugのインストールがうまくいかなかったので、以下のサイトを参考にjruby-debug環境を整えてみました。http://debug-commons.rubyforge.org/#jruby-debug install 以下のサイトを参考にインストール。http://debug-commons.rubyfor…