Posts by Gonçalo Queirós • 131 points
2 posts
-
3
votes2
answers635
viewsA: How do I change the content of a file within an old commit in Git?
You can make the change with the git rebase -i HEAD~3 This command will open an editor with the last 3 commits and the instructions you should follow. What you want is in the 3rd commit to change…
gitanswered Gonçalo Queirós 131 -
0
votes2
answers372
viewsA: Laravel 4 Deploy Failure in Shared Hosting
Looks like the file autoload.php was not uploaded to ftp. That file should be inside the folder bootstrap which should be at the same level as the folder public Error says file index php. loaded,…