This is an organization for the Fall 25' class on computational systems for visual art and design.
-
Once you receive an invite, create a new repository on this GitHub organization. Use your first name (no spaces) as the repository name. Do not initialize a README, add a gitignore, or a license.
-
Open the student_sample repository in the organization. This is a template I've created to help you set up your own repository.
-
Download a zipped copy of the repository to your computer, unzip it, and save it somewhere that is not your Downloads folder. You might also want to rename the directory.
-
Open the README.md file and edit it with your personal information.
-
Open the command-line application on your computer (Terminal on Mac and Linux, Command Prompt on Windows) and cd into the directory.
-
Initialize a git repository and add your files:
git init
git add --all
-
Make your first commit:
git commit -m "your message here"
-
Setup your remote to point to the repository you created with your name and push your changes to the remote:
git branch -M main
git remote add origin https://github.com/CSVADFall25/<my folder name>.git
git push -u origin main
Weekly examples for all projects are available in this organization in the codeexamples repository.
Please refer to the class code of conduct for expectations and guidelines on attribution.