タグ

2013年8月20日のブックマーク (2件)

  • Vagrant + VirtualBox で nfs を使って、synced_folder を速くする

    Home > Vagrant | 開発環境 > Vagrant + VirtualBox で nfs を使って、synced_folder を速くする Vagrant + VirtualBox で便利な synced_folder を nfs を使ってパフォーマンスを向上する方法です。 開発環境として Vagrant + VirtualBox を使う上で欠かせないのが synced_folder です。ホストとゲスト間でディレクトリを共有できるので、ホストで書いたコードをゲストですぐに実行することができます。 synced_folder はVirtualBox が持つ shared folders という機能をつかているのですが、代わりに nfs を使うことで、パフォーマンスを向上させることができます。 nfsd をホスト側で起動 synced_folder に nfs を利用するには、ホ

  • Five Useful Git Tips - adit.io

    Written August 16, 2013 Let's start with a simple one: 1. Autocorrect Now when you make a simple typo, git will correct it automatically! But a bigger typo will fail: 2. Tab-completion Or you can let bash complete commands for you! Download this file to your home directory and name it .git-completion.bash. Add this to your .bash_profile: source ~/.git-completion.bash Now bash will tab-complete git

    shoma
    shoma 2013/08/20
    余計なスペースの削除にattribute でfilterとして実行するtrimWhitespaceを作る...