HarshCasper / SpeakEd

📣 An Open Community Platforms connecting Speakers to Community Leads while building their Portfolio
speak-ed-harshcasper.vercel.app
MIT License
23 stars 40 forks source link

Added Contributing.md file #19

Closed aysp-99 closed 3 years ago

aysp-99 commented 3 years ago

Addresses #8

aysp-99 commented 3 years ago

Please remove all the Images from the utils folder. Instead upload these images on Imgur and reference it from there.

Thanks!

Done. 👍

HarshCasper commented 3 years ago

image should we just remove extra spaces from the lines of commands to commands from

commands

it will look better and cleaner.

what're your thoughts @HarshCasper ?

Doesn't make much difference. Would it be great if @aysp-99 can make it happen.

Also, since everything looks fine, can you push all your changes into a single commit, so that I can merge it? If you don't know how to do that, I can help you 👍

aysp-99 commented 3 years ago

image should we just remove extra spaces from the lines of commands to commands from

commands

it will look better and cleaner. what're your thoughts @HarshCasper ?

Doesn't make much difference. Would it be great if @aysp-99 can make it happen.

Also, since everything looks fine, can you push all your changes into a single commit, so that I can merge it? If you don't know how to do that, I can help you 👍

I made the necessary changes to it. I tried to squash the previous commits but I am not sure if it worked. I am not quite well versed with 'squash and rebase workflow'. Can you please guide me?

HarshCasper commented 3 years ago

image should we just remove extra spaces from the lines of commands to commands from

commands

it will look better and cleaner. what're your thoughts @HarshCasper ?

Doesn't make much difference. Would it be great if @aysp-99 can make it happen. Also, since everything looks fine, can you push all your changes into a single commit, so that I can merge it? If you don't know how to do that, I can help you 👍

I made the necessary changes to it. I tried to squash the previous commits but I am not sure if it worked. I am not quite well versed with 'squash and rebase workflow'. Can you please guide me?

Never mind. I have merged it 👍

Let me explain how you can do this in future:

So, lets say: there were 5 commits in total:

git reset --soft HEAD~5 will soft reset the last 5 commits.

Then, you can make a single commit by doing the standard git add and git commit.

And after that, git push -f origin HEAD will force push the single commit.

aysp-99 commented 3 years ago

image should we just remove extra spaces from the lines of commands to commands from

commands

it will look better and cleaner. what're your thoughts @HarshCasper ?

Doesn't make much difference. Would it be great if @aysp-99 can make it happen. Also, since everything looks fine, can you push all your changes into a single commit, so that I can merge it? If you don't know how to do that, I can help you 👍

I made the necessary changes to it. I tried to squash the previous commits but I am not sure if it worked. I am not quite well versed with 'squash and rebase workflow'. Can you please guide me?

Never mind. I have merged it 👍

Let me explain how you can do this in future:

So, lets say: there were 5 commits in total:

git reset --soft HEAD~5 will soft reset the last 5 commits.

Then, you can make a single commit by doing the standard git add and git commit.

And after that, git push -f origin HEAD will force push the single commit.

Oh, got it. Thanks. 👍