hay all, looking to setup Source Control though I want to run everything on my local system only, any options that you can recommend that could work for local systems only instead of online with github
Yeah, I do this all the time. Just create a local repository.
If you have git installed, go to the project folder and type the following in a command prompt
- Create a ‘master’ branch
git init -b master
- Add everything to that branch
git add .
- Commit it into the branch
git commit -m "Initial Commit"
NOTE I’d recommend adding a .gitignore
file before adding everything to the branch
Now you have a local repository that you can work with like any other cloned repository
thank you will jump on google and get git loaded up much appreciated
My pleasure. Here is the .gitignore
I use for all my repositories. It’s set up for Unity projects
1 Like
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.