Amended gemfile#157
Conversation
|
I will close this as this goes on in #158 where I have done some work. So what I basically did to remove the "haha" commits: The interactive rebase gives you an interface where you can remove commits (simply delete the line with the commit hash and the message, if it is nano that would be Here is a post describing what git rebase does. Be aware that the above warning (rebasing something that you have already pushed) in practice only applies to when you have already pushed it and other people are using it (e.g. on the hacket-hack.com master). For Pull Requests it is relatively safe. Another thing is that I noted that you worked on your master branch. In general people in git say "branch early, branch often" so it is good to make a new branch for every feature you work on especially if you want to open pull requests. You can do so by As I completely removed the "haha" commits, as they had no purpose, squashed commits together and you worked on the master branch getting these changes into your repository might be a bit harder as usual. By getting the changes I mean git pull, e.g. get your repository to the same state as this repository. (I do not know, just a guess that it could be that way). For git knowledge in general I highly recommend learn git branching. The github help also has some good all around help. |
No description provided.