タグ

2010年3月12日のブックマーク (2件)

  • http://dev.rubyonrails.org/svn/rails/plugins/deadlock_retry/lib/deadlock_retry.rb

    # Copyright (c) 2005 Jamis Buck # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to

    mad-p
    mad-p 2010/03/12
    deadlock_retryプラグインを常には使いたくないが特定のトランザクションで使いたければ、これをまねする
  • 覚えておくと便利なgitのtipsをいくつか - Webtech Walker

    頻繁に使うわけではないけど便利なgitのtipsをいくつか紹介。というか自分が忘れるからメモ。 git stash 現在作業中のbranchでまだコミットはしたくないけど、trunkで直さないといけないバグとかが見つかったときに、今の変更を横にどけておくコマンド。 $ git stash で変更をいったん横にどけておいて、他のbranchに切り替えて作業後、今のbranchに戻ってきて $ git stash pop とすれば横にどけておいた変更が復活する。 git ignore プロジェクトの中で除外する必要があるファイルは.gitignoreに書くけど、自分の環境だけで除外したいファイルがある場合は.git/info/excludeに書くのがよいです。 自分の環境ではいつでも除外したいというときは $ git config --global core.excludesfile $HOM

    覚えておくと便利なgitのtipsをいくつか - Webtech Walker
    mad-p
    mad-p 2010/03/12
    自分の環境だけで除外したいファイルがある場合は.git/info/excludeに書く