Deployments
Now that you've made changes to your project, how do you get those changes to your users? By deploying them to Grafbase using Git.
To deploy a project's branch using git commands:
- Navigate to the root of the GitHub repository on your computer.
- Make sure that you are in the production branch.
- Make your changes to the branch.
- Enter the following commands, where MESSAGE is your git commit message:
git add -A
git commit -m "MESSAGE"
git push