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
| alias ls='ls --color=tty' | |
| alias ll='ls -lah' | |
| alias lll='ls -lahtr' | |
| alias ff='find $( pwd ) -follow -name ' | |
| alias fic='find $( pwd ) -follow -name "*.c" -o -name "*.cc" -o -name "*.cpp" | xargs grep --color -e ' | |
| alias fih='find $( pwd ) -follow -name "*.h" | xargs grep --color -e ' | |
| alias fis='find $( pwd ) -follow -name "*.c" -o -name "*.cc" -o -name "*.cpp" -o -name "*.h" | xargs grep --color -e ' | |
| alias fif='find $( pwd ) -follow -type f -not -name "*~" -not -name "*swp" | xargs grep --color -e ' | |
| alias fip='find $( pwd ) -follow -name "*.py" | xargs grep --color -e ' |
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
| [user] | |
| email = [email protected] | |
| name = uallaualla | |
| [color] | |
| ui = true | |
| interactive = auto | |
| diff = auto | |
| branch = auto | |
| status = auto | |
| [core] |
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
| # Copyright (C) 2012 Andrea Valle | |
| # | |
| # This file is part of git4f. | |
| # | |
| # git4f is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # git4f is distributed in the hope that it will be useful, |
NewerOlder