-
-
Notifications
You must be signed in to change notification settings - Fork 19
Project Development
So you've been accepted to the xenharmonic-devs organization, here's how to get started with git on Linux command line.
Install git if you didn't already.
sudo apt-get update
sudo apt-get install gitClone using SSH so that you can push your work to the repository. This will create a folder called scale-workshop in your current working directory.
git clone git@github.com:xenharmonic-devs/scale-workshop.gitMake a local copy of the Vite configuration.
cp vite.config.ts.template vite.config.tsCreate a feature branch.
git checkout -b my-featureMake your changes to the code.
Let's say you modified something in the analysis tab. Only add the relevant files.
git add src/views/AnalysisView.vueAdd a commit message with a clear title in present tense and a reference to the issue you worked on.
$ git commit -m 'Add abstract dyads option to interval matrix
>
> ref #617'Push to the online repository under a branch of the same name as locally.
git push origin HEADGitHub will send back a link to open a pull request. Assign frostburn as the reviewer and wait for feedback.