diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-07-29 14:05:58 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-07-29 14:05:58 -0700 |
commit | de975a48080e01474b0cb790df320cb30f56e63b (patch) | |
tree | 5fb279e563c6a32d1644c7e440109bcb7e79c26b | |
parent | [vim] add a couple of plugins. (diff) | |
download | emacs.d-de975a48080e01474b0cb790df320cb30f56e63b.tar.gz |
[bash] new alias to set my git info.
Diffstat (limited to '')
-rw-r--r-- | bashrc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bashrc b/bashrc index 081aaf6..6bc2d77 100644 --- a/bashrc +++ b/bashrc @@ -68,4 +68,9 @@ alias pjson="python -mjson.tool" # tmux alias tmux='tmux -2' +function gitme { + git config --local user.email "franckcuny@gmail.com" + git config --local user.name "Franck Cuny" +} + [ -f "${HOME}/.bash_local" ] && source "${HOME}/.bash_local" |