mirror of https://github.com/bjeanes/dotfiles.git
Added an alias to place a .gitignore file in all empty directories recursively from current directory.
parent
62e90db723
commit
42e95232d7
2
.bashrc
2
.bashrc
|
@ -55,6 +55,8 @@ alias gac='git commit -a'
|
||||||
alias gps='git push origin master'
|
alias gps='git push origin master'
|
||||||
alias gpl='git pull origin master'
|
alias gpl='git pull origin master'
|
||||||
|
|
||||||
|
alias ignore_empty='find . \( -type d -empty \) -and \( -not -regex ./\.git.* \) -exec touch {}/.gitignore \;'
|
||||||
|
|
||||||
# Gem Doc
|
# Gem Doc
|
||||||
export GEMDIR=`gem env gemdir`
|
export GEMDIR=`gem env gemdir`
|
||||||
gemdoc() {
|
gemdoc() {
|
||||||
|
|
Loading…
Reference in New Issue