Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 876 Bytes

Contribution.md

File metadata and controls

48 lines (28 loc) · 876 Bytes

6. Make your changes

Now it's time to make your changes.

9. Commit your changes

Run git status to see which changes you have made. This will look something like:

pic here

Add these changes to your next commit by running:

git add -A

And then commit them by running:

git commit -m "Your message"

For example:

git commit -m "Adding a new Asset"

10. Push your changes to Github

Push your changes to GitHub by running:

git push origin <your-new-branch-name>

Note: Replace <your-new-branch-name> with the name of your branch

11. Open a Pull Request

Head over to your repository on GitHub and click on the green "Compare and pull request" button.

Describe your changes and submit your pull request