Nick Alberelli
6072cc5334
## What's Changed? - Adds Python Install Guide - Adds SVN Setup Guide - Adds windows commands to Project Blender Page - Adds windows commands to TD Guide - Set TD Guide to use home-folder so all commands can be copy/pasted directly - Share same Blender Page Between User and TD Guide - Split Guide into Multiple FIles ### New Windows Commands ![image](/attachments/4fbd8d31-1486-435c-8b36-e06fd41646a6) ### New Guide Layout ![image](/attachments/e8dbe100-0363-46d9-96f3-4f1e0dbfacab) Reviewed-on: #189 Reviewed-by: Francesco Siddi <fsiddi@noreply.localhost>
2.0 KiB
2.0 KiB
SVN Set-Up
Install/Setup SVN
The Blender Studio Pipeline relies on SVN to version control all .blend files used in production. This guide will show you how to install an SVN on a workstation, assuming you already have an SVN server setup. To learn more about how to setup an SVN server visit the SVN Documentation
Linux/Mac
- Install SVN Client on your system via the SVN Documentation
- Use the following command to checkout the current SVN repository into the SVN directory.
svn checkout http://your_svn.url ~/data/your_project_name/svn
Windows
- Download & Install the TortoiseSVN Client
- Navigate to your project's root directory. Right-Click Select the
svn
folder and selectSVN Checkout
- Enter the URL to checkout under
URL of repository
- Select OK to begin checking out the repository
Committing Changes to Repository
Linux/Mac
To commit changes to the SVN use the following command. For more details see the SVN Documentation
svn commit -m "My Descriptive Log Message"
Windows
To commit changes from the TortoiseSVN client, follow the steps below. For more information see the TortoiseSVN Documentation
- Navigate to your project's root directory.
- Right-Click Select the
svn
folder and selectSVN Commit
- Enter your commit's message in the box labelled
Message
- Review what files have changed in the box labelled
Changes made
::: info Note For more details on how to set-up an SVN repository please see the official SVN Documentation and the TortoiseSVN Documentation :::