Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ proml


# Set git autocompletion
if [ -f /usr/local/git/contrib/completion/git-completion.bash ]; then
. /usr/local/git/contrib/completion/git-completion.bash
if [ -f /usr/local/etc/bash-completion ]; then
. /usr/local/etc/bash-completion
fi

if [ -f /opt/local/etc/bash_completion ]; then
. /opt/local/etc/bash_completion
if [ -f /usr/local/etc/bash_completion ]; then
. /usr/local/etc/bash_completion
fi

export TERM="xterm-256color"
Expand Down
6 changes: 3 additions & 3 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[user]
name = Jeffrey Heifetz
email = jheifetz@blackberry.com
name = Chris DelCol
email = chris.delcol@gmail.com
[github]
user = jeffheifetz
user = cdelcol
[color]
ui = true
status = auto
Expand Down
2 changes: 2 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
Running the configure script should set everything up

Optionally, run "./configure update" and you can personalize your git/github settings
16 changes: 16 additions & 0 deletions configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,19 @@ sudo ln -fs $Repo/.iterm $HOME/.iterm
sudo ln -fs $Repo/.ssh/config $HOME/.ssh/config
sudo ln -fs $Repo/.vim $HOME/.vim
sudo ln -fs $Repo/.vimrc $HOME/.vimrc

# setup some personalized entries via question/answer
if [ "$1" == "update" ]; then
echo "Enter your name used for git and press [ENTER]:"
read git_name

echo "Enter your email address usde for git and press [ENTER]:"
read git_email

echo "Enter your Github user id and press [ENTER]:"
read github_user

git config --global user.name "$git_name"
git config --global user.email "$git_email"
git config --global github.user "$github_user"
fi