Last active
August 29, 2015 14:24
-
-
Save indare/a6a23f3a3e9b8e456d3f to your computer and use it in GitHub Desktop.
gitignoreとか
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
# This is Git's per-user configuration file. | |
[core] | |
# Please adapt and uncomment the following lines: | |
user = 'fugafuga' | |
email = [email protected] | |
excludesfile = /Users/fugafuga/.gitignore | |
autocrlf = input | |
editor = "/Applications/Emacs.app/Contents/MacOS/Emacs" | |
[user] | |
name = Fugafuga Hogeo | |
email = [email protected] | |
[difftool "sourcetree"] | |
cmd = opendiff \"$LOCAL\" \"$REMOTE\" | |
path = | |
[mergetool "sourcetree"] | |
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\" | |
trustExitCode = true | |
[push] | |
default = simple | |
[alias] | |
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
lga = log --graph --all --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
co = commit | |
ch = checkout | |
re = rebase | |
ad = add | |
pu = pull | |
fe = fetch | |
pu = push | |
br = branch | |
st = status | |
cl = clone |
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
*~ | |
.DS_Store | |
*.iml | |
.idea/ | |
.idea/* | |
vendor/ | |
node_modules/ | |
composer.lock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment