First off, thanks for taking the time to contribute! ❤️
All types of contributions are encouraged and valued. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
And if you like the project, but just don’t have time to contribute, that’s fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
- Star the project
- Tweet about it
- Mention the project at local meetups and tell your friends/colleagues
If you want to ask a question, we assume that you will mail here [email protected].
- Create a fork of this repository on GitHub
- Clone the GitHub repository on your computer
- Create a new branch
- Make your changes on this branch
- Stage and commit those changes
- Push your branch on your GitHub repository
- Open a pull request
- That's it after merging/approving 😍your changes you are done.
- Stay up to date
This project aims to simplify and guide the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below
\
If you don't have git on your machine, install it.
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon. Now clone the forked repository to your LocalHost.
Open a terminal and run the following git command:
git clone "URL of forked repository"
(without the quotation marks) (your fork of this project)
Change to the repository directory on your computer (if you are not already there):
cd intellimixio
Now create a branch using the git checkout
command:
git checkout -b your-new-branch-name
For example:
git checkout -b hacktober2022
If you go to the project directory and execute the command
git status
,
you'll see there are changes.
The Red there is to be commited / that are the changes which are not pulled to main/master or any other branch.
So Lets add those changes with these command lines:
git add
or
git add -A
Now commit those changes using the git commit
command:
git commit -m "<Your commmit message>"
Push your changes using the command git push
:
git push origin -u <add-your-branch-name>
replacing <add-your-branch-name>
with the name of the branch you created earlier.
If you get any errors while pushing, click here:
-
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com//first-contributions.git/'
Go to GitHub's tutorial on generating and configuring an SSH key to your account.
If you go to your repository on GitHub, you'll see a Compare & pull request
button. Click on that button.
Now submit the pull request.
Soon Our team will be merging all your changes into the master/main branch of this project. You will get a notification email once the changes have been merged.
Thank You