-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added to README instructions and file list
- Loading branch information
1 parent
b00b85f
commit 1d85ef6
Showing
1 changed file
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,25 @@ A place to keep config files so we can share and track them, with a script to sy | |
|
||
1. Fork this repo (so you can make changes for yourself) | ||
1. Clone your fork into ~/dotfiles | ||
1. Make the symlink script executable: `chmod +x ~/dotfiles/symlink.sh` | ||
1. Add this repo as the upstream branch: `cd ~/dotfiles && git remote add upstream [email protected]:jasonrhodes/dotfiles.git` | ||
1. Pull all latest changes from upstream: `git fetch upstream && git merge upstream/master` | ||
1. Make sure you have bash-completion installed: `brew list | grep bash-completion` if nothing is returned, run: `brew install bash-completion` (don't worry about what it tells you to put in your .bash_profile, it's already there) | ||
1. Make the symlink script executable: `chmod +x ~/dotfiles/symlink.sh` | ||
1. Run the symlink.sh script: `~/dotfiles/symlink.sh` | ||
|
||
## Current dotfiles included | ||
|
||
### .bash_profile | ||
|
||
Bash configuration file loaded on every terminal session. If you make a change here, make sure you run `source ~/.bash_profile` to reload it. Things that go here are bash aliases, $PATH definition, bash prompt setup, etc. | ||
|
||
### .gitconfig | ||
|
||
User-level configuration file for all things git. Anything you would normally add with `git config --global --add key.subkey value` can be added in the .gitconfig file as: | ||
|
||
``` | ||
[key] | ||
subkey = value | ||
``` | ||
|
||
We currently set up user config (**which you should change to be your own user/email**), color ui turned on, and git aliases. |