samhstn / my-config

16 stars 0 forks source link

Git information is messy #47

Closed samhstn closed 5 years ago

samhstn commented 5 years ago

In the Git section (here: https://github.com/samhstn/my-config#git)

The commands to run are a little messy and should be tidied up


git config --global user.name <yourname> git config --global user.email <your@email.com>

should be on two lines, like this:

git config --global user.name <yourname>
git config --global user.email <your@email.com>

(doesn't currently work if you paste in the commands)


This doesn't work:

echo ".DS_Store" > ~/.gitignore_globalgit
config --global core.excludesfile ~/.gitignore_global

It should be:

echo ".DS_Store" > ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global