diff --git a/content/posts/2017-10-11--tips-and-tricks/index.md b/content/posts/2017-10-11--tips-and-tricks/index.md index 1d5e761..8d2b6c6 100644 --- a/content/posts/2017-10-11--tips-and-tricks/index.md +++ b/content/posts/2017-10-11--tips-and-tricks/index.md @@ -7,6 +7,19 @@ author: wwcodepdx What are some of your favorite development tips, code editors, themes or other productivity tips? +Coming to the shortcuts you can use configure the shortcuts for git in the **.gitconfig** file which i basically store in the home directory + +I have used the following aliases to make life easier. Follow the same structure in the .gitconfig file + +[alias] + st = status + ci = commit -m + co = checkout + br = branch + ad = add + pu = push + etc + For example: * I love VS Code, and the VS Code theme Night Owl!