Skip to content

In class demonstration for Wednesday afternoon class, Northbridge.

License

Notifications You must be signed in to change notification settings

Lucas-lufa/civ-ipriot-in-class-demos

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

In class demonstrations: Semester 1, 2023

Code that is developed in class will be uploaded here.

Best way to work with this repository

  1. Clone this repository locally:
git clone https://github.com/NM-TAFE/civ-ipriot-in-class-demos.git
cd civ-ipriot-in-class-demos
  1. If you want to experiment on the code locally, create a new branch:
git checkout -b local_experiments
  1. Periodically, fetch changes from the upstream repository:
git fetch origin
  1. Merge the changes from the upstream's main branch into your local branch:
git checkout local_experiments
git merge origin/main
  1. If you want to keep your local branch's history clean, you can rebase instead of merge:
git checkout local_experiments
git rebase origin/main

if there are any conflicts, you'll need to resolve them and continue the rebase using git rebase --continue.

By following this workflow, you can keep your local branch up to date with the upstream repository while making your own modifications. Remember not to push your changes to the upstream repository.

About

In class demonstration for Wednesday afternoon class, Northbridge.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%