Now it's time to make 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"
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
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