Linux

Find the commit where the things are working correctly: [shell]in my case: 5b2f156 or the whole commit 5b2f156e43e25f71df55bbd0bc887662c48937a59[/shell] Find the commit where the things are not working or are failing: [shell]in my case: 66b6b6be43e25f71df55bd0bc887662c49937a59[/shell] Lets find the root of the problem: [shell]git bisect start[/shell] specify the good commit [shell]git bisect good 5b2f156[/shell] Specify...

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

Hola como nos dice heroku nuestra aplicacion dura en cargar la primera vez esto por que como ellos dicen, el dyno de tu aplicacion se muere (por que nadie lo esta utilizando), y lo quita de memoria eso segun lo que lei si durante una hora no hay actividad lo quita, por lo que si tienes pocas visitas en tu sitio cuando llegue un nuevo visitante va a durar un poco mas en cargar dicha aplicacion, pero si contratas mas de un dyno el proceso que corre tu aplicacion nunca se morirá.