- A short summary of what has changed with this PR. (preferably not too technical)
- Technical details including which classes, logic containers etc. has changed.
- Possible scenarios for what to test and critical areas for QAs to be aware of.
| [core] | |
| excludesfile = /Users/erenkabakci/.gitignore_global | |
| [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 | |
| [pull] | |
| rebase = true |
| ####### set custom path ############## | |
| export PATH=$PATH:~/bin | |
| export PATH=$PATH:~/usr/local | |
| ########### terminal convenience ############# | |
| alias ls='ls -G' | |
| function parse_git_branch { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
| } | |
| export PS1="🤘 \[\033[01;35m\]\u:\[\033[01;34m\]\W:\[\033[01;34m\]\[\033[01;32m\]\$(parse_git_branch)\$ \[\e[0m\]" |