-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
fixed redundant images folders #3295
Conversation
Two things, the first is why did you move them into a sub folder and the second. Are all those files really not needed? Some of the files may not be referenced explicitly but implicitly because they are hosted somewhere else. For instance the logo is used in the readme but has a version in the repo so that (I assume) it can be updated later if wanted |
I think we should keep the images. It is assets which don't mean only to use it in code. |
I feel like the original issue should have been more specific. |
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.
Hi! thanks for the PR. as others have commented, there are some problems here, so I'll enumerate them:
- Please sign CLA
- Restore all files under
assets/
- Move
media/logo.svg
intoassets/
Relocating the Growl images into images/growl/
is good
Hi @boneskull I replaced all deleted images and placed them in the assets folder. I placed in it Furthermore, I already signed the CLA and when I revisit the page to sign, they tell me I already did. |
IMO it's not necessary for anyone to remove themselves from the |
@kborchers can you please check on the CLA status for this? |
@DavNej I wonder if you could amend your commit then force push? That might "jiggle the handle" on the CLA system, as it were. $ git commit --amend --reuse-message=HEAD
$ git push -f |
The issue with the CLA signature is likely that the user in the commit doesn't match the user that signed. If you look at the commit, the user is not recognized by GitHub and doesn't match the user that opened the PR and likely signed the CLA. The commit will need to be updated with the correct user and email or the CLA needs to be signed with the user on the commit. |
Hi, I had some login issues I fixed. In order to have some change to commit I removed my name from the |
DavNej signed CLA, but David Nejar doesn't. I think you should update author for all commits. |
Hi, |
Unless the project would prefer separate commits, I would just squash everything into one commit with the correct author. |
@DavNej I'm not sure. Just rebase interactively and squash all commits with the new author. I'd recommend doing this in your Mocha working copy: $ git config user.name 'DavNej'
$ git config user.email 'davnej.dev@gmail.com' ...then squashing. |
@boneskull |
You can squash them all with
|
@DavNej Here's a decent tutorial on squashing. |
This will be ready to merge once we sort out the squash & CLA business. |
fixed path in bin/_mocha
loged in commit for CLA
After some struggle and some useful learning, I squashed the commits leaving only the 2 main commits. Thank you very much for your patience. Peace :) |
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.
👍
I'm not sure when I can merge PR yet. So, I leave this because this is ready to merge. @boneskull |
This is my first contribution and here is what I did.
WARN: I can't figure out how to run a test to ensure that what I did was correct. Please review and tell me if I forgot something or if I should proceed otherwise.
Thanks :)