Mention need to create ~/.extra
This commit is contained in:
parent
4d5459ccd6
commit
96cd3d4b6a
1 changed files with 17 additions and 3 deletions
20
README.md
20
README.md
|
@ -14,6 +14,20 @@ be in a dirty state, permanently.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
First clone the repo. Then run `./boostrap.sh`, this will create all the
|
First clone the repo.
|
||||||
necessary symlinks. This is a **destructive** process, so backup your dotfiles
|
|
||||||
first.
|
As mentioned above my git credentials are stored in an untracked file:
|
||||||
|
`$HOME/.extra`. This must be manually created, mine looks like:
|
||||||
|
|
||||||
|
```
|
||||||
|
# Git credentials
|
||||||
|
GIT_AUTHOR_NAME="Jonny Barnes"
|
||||||
|
GIT_COMMITER_NAME="$GIT_AUTHOR_NAME"
|
||||||
|
git config --global user.name "$GIT_AUTHOR_NAME"
|
||||||
|
GIT_AUTHOR_EMAIL="jonny@jonnybarnes.uk"
|
||||||
|
GIT_COMMITER_EMAIL="$GIT_AUTHOR_EMAIL"
|
||||||
|
git config --global user.email "$GIT_AUTHOR_EMAIL"
|
||||||
|
```
|
||||||
|
|
||||||
|
Run `./boostrap.sh`, this will create all the necessary symlinks, then source
|
||||||
|
`.zshrc`. This is a **destructive** process, so backup your dotfiles first.
|
||||||
|
|
Loading…
Add table
Reference in a new issue