Upstream repository: Acoustic-Resonance/AcousticTracer
Default branch: main
Merge strategy: Merge commit
Review requirement: 1 approval
PRs should start as: Draft
Acoustic-Resonance/AcousticTracer (shared team repo)Rule: Nobody pushes to upstream/main directly. Everything goes through PRs.
Fork Acoustic-Resonance/AcousticTracer into your own account.
git clone https://github.com/<your-username>/AcousticTracer.git
cd AcousticTracer
git remote add upstream https://github.com/Acoustic-Resonance/AcousticTracer.git
git remote -v
You should see:
origin → your forkupstream → Acoustic-Resonance/AcousticTracerBefore creating a new branch, sync your main:
git switch main
git pull upstream main
git push origin main
main)Branch naming:
feature/<short-description>fix/<short-description>docs/<short-description><issue-num>/<issue-description>Create:
git checkout -b feature/<short-description>
Commit early and often:
git add -A
git commit -m "Short, clear message"
Push your branch to your fork:
git push origin branch-name
Open a PR from your fork branch → Acoustic-Resonance/AcousticTracer:main.
Open the PR as Draft until:
When ready:
git switch main
git pull upstream main
git push origin main
Then delete branches:
git branch -d feature/<short-description>
git push origin --delete feature/<short-description>
Commits should be written in the imperative, with the first letter capitalised. The title of the commit should be less than 50 characters, any extra information should be in the commit body.
.
├── core {Core C code for render calculations}
│ └── src {Core C simulation code}
│ └── core_dev {Debug code for the simulation}
│ └── external_libs {External libraries}
├── render {Code for rendering the scene}
│ └── web {Backend code for web app}
│ └── cli {Backend code for the terminal app}
├── app {Code for web/C-ui frontend application}
├── genetics {Code for optimizing the speaker placement}
├── assets {Assets folder for code}
│ └── glb {Object files defining points}
├── blender {Blender files containing the simulated rooms}
├── docs {Documentation for the project}
└── contributors {Files specifying every ones contributions}