This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
.git/hooks/gtags >/dev/null 2>&1 & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
case "$1" in | |
rebase) exec .git/hooks/post-merge ;; | |
esac |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config −-global init.templatedir=~/.git_template |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo -n "Input commit message: " | |
echo -n -e '\e[0;33m' | |
read input | |
echo -n -e '\e[0m' | |
file=$(octopress new post "${input}") | |
echo "File: $file" | |
emacsclient -c ${file} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd $(git rev-parse --show-toplevel) && jekyll build && octopress deploy && git add . && git ci -m "update it" && git push |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sync |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Private WithEvents oExpl As Explorer | |
Private WithEvents oItem As MailItem | |
Private bDiscardEvents As Boolean | |
Dim outlookNameSpace As Outlook.NameSpace | |
Dim inbox As Outlook.MAPIFolder | |
Private WithEvents items As Outlook.items | |
Dim WithEvents myInboxMailItem As Outlook.items |
OlderNewer