1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/usr/bin/env ruby # from http://errtheblog.com/posts/89-huba-huba home = File('~') Dir['*'] do |file| next if file =~ /install/ target = File(home, ".") `ln -s ` end # git push on commit `echo 'git push' > .git/hooks/post-commit` `chmod 755 .git/hooks/post-commit` |
Pastie