Closed marian-ald closed 7 years ago
Hello @marian-ald.
I think that is not what was meant by screenshot of the demo page. The page is located at http://coala.github.io/coala-html/#/
You should also include a Fixes/Closes
message in your commit message. I would also change from 'Added' to 'Add' in your commit shortlog.
So, have I to do it for the link above? http://coala.github.io/coala-html/#/
Unfortunately I don't know what do you mean by Fixes / Closes
Go to https://coala.io/commit . @marian-ald
Now the screenshot it's fine, squash your commits and add Closes <link_to_your_issue>
in the commit message. use git commit --amend
change your commit message and push again!
@marian-ald okay, you still need to squash your commits. to do that, run git rebase -i HEAD~3
, that should try to rebase latest three commits from your branch. after you do it, you should see, something like this
pick u59gw6 Added demo of...
pick 725529 Add demo of...
pick 9hoeh7 Add demo of...
<bunch of comments on usage here>
In the usage comments you can see an 'squash' option.
Replace two of these 'pick' with 'squash' and save the file. Then you will end up editing another file. This is the commit message one. I would make it like this
README.rst: Add screenshot of the demo page.
Closes <link to issue here>
Then save and force push.
@marian-ald to remove the files that aren't yours in this pull see: http://stackoverflow.com/questions/18357511/git-remove-commited-file-after-push
Comment on 0cebad57b4179596b96e458950eff0e11bf3ccc7, file coalahtml/_coalahtml/app/styles/files.css, line 40.
Line is longer than allowed. (80 > 79)
LineLengthBear, severity NORMAL, section css
.
Comment on 0cebad57b4179596b96e458950eff0e11bf3ccc7, file coalahtml/_coalahtml/app/styles/files.css, line 39.
Line is longer than allowed. (80 > 79)
LineLengthBear, severity NORMAL, section css
.
Comment on 27ca7d354eb4e1d81915e7695ddfaa693a721f21, file coalahtml/_coalahtml/app/styles/files.css, line 40.
Line is longer than allowed. (80 > 79)
LineLengthBear, severity NORMAL, section css
.
Comment on 27ca7d354eb4e1d81915e7695ddfaa693a721f21, file coalahtml/_coalahtml/app/styles/files.css, line 39.
Line is longer than allowed. (80 > 79)
LineLengthBear, severity NORMAL, section css
.
I followed those steps. I think it should be ok, but still have those commits on my page :/...
Ask us on the channel. https://gitter.im/coala/coala someone will help you.
Unfortunately, you did not follow the Git basics. This Pull Request (PR) is using your "master" branch, which means you did not create a new branch.
Please redo your changes, following the Git Basics guide, and submit a new PR.
Thanks for your contribution!
Reviewing pull requests take really a lot of time and we're all volunteers. Please make sure you go through the following check list and complete them all before pinging someone for a review.
Fixes
keyword if the commit fixes a real bug and theCloses
keyword if it adds a feature/enhancement. See more here.As you learn things over your Pull Request please help others on the chat and on PRs to get their stuff right as well!