How to set up a Git Repository for my server
Last updated
Buy a VPS or dedicated server from ZAP-Hosting, use code TheWolfBadger-4765 for 20% off
Coming Soon...
You will want to navigate to the directory where your resourcesfolder is located.
You will then want to type git init
You will then type git add .
You will then type git commit and enter a message for the commit (maybe Initial Commit?)
You will now need to create a remote repository to link this local repository up to.

You will need have a remote repository initialized on GitHub.

Within your git bash terminal you will run the following as GitHub has instructed you to
This will push the changes in your current local branch to the remote branch
Coming Soon...
Last updated
git remote add origin https://github.com/JaredScar/CollectiveM-Server.git
git branch -M main
git push -u origin main