Linux, Mac, Rails / 03.06.2013
Some useful commands for a Developer
If you want to add forgotten files into the previous commit git amend to the rescue:
[shell]
git commit --amend –C HEAD
[/shell]
How to search files name from command shell
[shell]
find . | grep nameoffileyouwanttofind
[/shell]
(You can use this for example when you want to migrate to another server and you need to move all your information in the database)
Export database