- Notifications
You must be signed in to change notification settings - Fork 147
Add scaladget library #172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thanks for the contribution. Please change the commit subject to "Add scaladget library". "Update. index.md" is not very useful in a commit list (and the commit body does not show). |
Done ! |
Ah, sorry... I meant the one in the commit itself. The GitHub PR title will only appear in the merge commit (but indeed, it needed changing too). You can amend the commit ( Also (in the future), please avoid making PRs from your master branch (if you continue working on it, the PR changes, which is rarely what you want). |
OK, I did it; everything was fine locally, but I don't see the propagation of my modification of the github page, so that I think my amend failed. I had to merge d4c0ad7 in between, peharps it is why it failed. Do you know how to fix it ? |
Yep... The merge messed things up. Do the following: (warning: deletes all other changes to your working copy)
If any of the commands fail: Don't run what they say, tell me the error. |
I tried this already and I got (and I still get) a "Everything up-to-date" after the push, meaning it has no effect. |
That is very strange. Your Could you try:
Also, could you show me the output of Thanks |
1cb845a
to 7a36d3e
Compare The command worked, but the commit on github still has the old title ... I tried to reset again and redo the amend and the git push -f origin 7a36d3e:master, but I got again the "Everything up-to-date" :(. git show gives: commit 9e4f310b93a8ee642ad5351107e5f48be30780bb Author: Mathieu <mathieu.leclaire@iscpif.fr> Date: Thu Sep 3 08:33:49 2015 +0200 Add scaladget library Added scaladget library diff --git a/index.md b/index.md index ac76271..c6d6eb9 100644 --- a/index.md +++ b/index.md @@ -84,6 +84,7 @@ and then "Create a Pull Request". * [threejs-facade](https://github.com/antonkulaga/threejs-facade): static types for [Three.js 3D library](https://threejs.org) * [codemirror-facade](https://github.com/antonkulaga/codemirror-facade): static types for [Codemirror code editor](http://codemirror.net) * [selectize-facade](https://github.com/antonkulaga/selectize-facade): static types for [Selectize](http://brianreavis.github.io/selectize.js/) +* [scaladget](https://github.com/mathieuleclaire/scaladget): static types for [D3.js](d3js.org), [Ace](http://ace.c9.io), [Tooltipster](http://iamceege.github.io/tooltipster/), [Bootstrap.js](http://getbootstrap.com/) (and an API for the latter) ### Testing frameworks and git log commit 9e4f310b93a8ee642ad5351107e5f48be30780bb Author: Mathieu <mathieu.leclaire@iscpif.fr> Date: Thu Sep 3 08:33:49 2015 +0200 Add scaladget library Added scaladget library which seems to be good, but on github, I do not have the same title: https://github.com/mathieuleclaire/scala-js-website/commits/master. |
Ah, OK. But now on GitHub, you have the old commit. Now do |
doing this made me merge again with 7a36d3e. Are we in a github black hole :) !? |
I don't understand why pushing merges anything... :( Does specifying the commit explicitly work? |
what do you mean ? |
Does this work: |
1cb845a
to 9e4f310
Compare Yes ! Sorry, I didn't see that a new commit ID had been generated. Thanks for helping ! I will take care next time to comment properly my commit titles. |
index.md Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
d3js.org
is missing http://
. This will not work correctly.
No worries :) This will give you good git training. (If you amend, the commit ID must change, it is the SHA1 of the commits contents). So... Now you have the line "Add scaladget library" twice in the commit message. That is not really a big deal so I'd merge it anyways. But there is an issue in one of the links (I commented individually). |
So while you are at it, you can also fix the commit message :) |
9e4f310
to 7b871e7
Compare How can you modify the commit itself ? I just succeeded in changing title and message but my new verison of index.md (with missing http) has not been taking into account. I just tried the same thing than before. |
You need to stage the changes (using |
It contains facades for D3.js, Bootstrap.js, Tooltipster.js and Ace.js
7b871e7
to 850e208
Compare Done ! Thanks. |
LGTM |
Thanks for bearing with us on this one @mathieuleclaire |
No worries, I didn't know the amend option; I know it very well now :) ! |
Added scaladget library. Hope it could help.