Joined November 2012
·

Alejandro Fernández

Booking.com
·
Amsterdam
·
·
·

Posted to Modify your commit messages over 1 year ago

An extra tip: if you only want to change the commit message instead of editing the commit itself you can use reword instead of edit and git will take care of everything for you :)

Posted to Brace Expansion in Bash over 1 year ago

Excelent summary of brace expansion :)

I just want to add that you can use ranges of numbers and letters.

$ echo foo{1..5}
foo1 foo2 foo3 foo4 foo5
$ echo foo{a..c}
fooa foob fooc

@sheerun it needs more testing before doing that, but thanks for the advice :)

Posted to Ultimate Webdev Time Saver over 1 year ago

@sjhcockrell neat! I will shamelessly copy the good parts tomorrow and blend them with mine :)

Posted to Ultimate Webdev Time Saver over 1 year ago

I coded a bash script ( https://gist.github.com/748896 ) with the same idea and man, you really save time!

Achievements
232 Karma
21,256 Total ProTip Views