Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.74 KB

CONTRIBUTING.md

File metadata and controls

49 lines (29 loc) · 1.74 KB

GUIDELINES TO CONTRIBUTE

1. Fork this repository

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.

Screenshot (527)

2. Clone your repository

Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.

Screenshot (528)

Open the terminal and run the following command:

git clone https://github.com/<your_user_name>/fastai.git

3. Create a new branch with:

git checkout -b main

4. Make the changes.

5. Push the changes to GitHub

Push your changes using the command git push:

git push origin main

replacing with the name of the branch you created earlier.

8. Create a pull request

To create a pull request, click on `compare and pull requests` .Please ensure that you compare your feature branch to the desired branch of the repository you are supposed to make a Pull Request to.

3

Now submit the pull request.

4

9. Congrats! You have done it!

You have successfully created a pull request now sit back and relax. And wait for the reviewers to review your code!