Posts Tagged config
Removing a git alias
Posted by Erik Bauffman in default on June 30, 2011
I had an issue trying to remove a git alias I made. You can remove it by deleting that line from the configuration file, but I wanted to know how to do it using the git config command.
git config --global --unset alias.myAlias
MySQL configuration file
Posted by Erik Bauffman in default on June 27, 2011
Place the configuration file ‘my.cnf’ in your home directory.

I no longer need to type ‘mysql -uroot -proot …’ to connect to my local databases. You can also set some other options such as the default character set which defaulted to latin1 in my case. I don’t like latin1, but I also don’t like typing this over and over when connection to a database.