牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

2013-06-01から1日間の記事一覧

Github もしくは Gist に ssh で push したい場合のメモ

Git

gist にあるものを git clone して .git/config の http を ssh に書き換え .git/config [remote "origin"] # url = http://gist.github.com/foobar.git url = ssh://gist.github.com/foobar.git ~/.ssh/config 追記2013-10-27:github.comの場合 Host githu…

Python の virtualenv で作った仮想環境名を変更したくなった場合のメモ

(python2.7, MacOS10.8) $ mkvirtualenv oldenv $ cpvirtualenv oldenv newenv $ rmvirtualenv oldenv MacPorts でインストールした場合のメモ .bashrc ## virtualenv setting if [ -f /opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/vir…