Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions content/posts/2017-10-11--tips-and-tricks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down