Mixxx uses Git for source control. Git is a distributed version control system that allows us to keep track of how our code changes and work together on it. Our code is hosted on GitHub. This page aims to get you up to speed with the basics of Git and how to use it with our workflow on GitHub. We are intentionally glossing over a lot of finer details which are explained in other Tutorials.
If you have still have questions after reading this, feel free to ask on Zulip.
Git comes preinstalled on macOS and many GNU/Linux distributions. If not, then install the git
package through your distribution's package manager. On Windows, download and install Git from git-scm.org. In addition to the command line tool, there are lots of GUI Git Clients available. Many IDEs have some integrated Git functionality or have a plugin for using Git within the IDE.
First, sign up for an account on GitHub. Then, go to the mixxxdj/mixxx repository and click the “Fork” button in the top right. Add an SSH key for your GitHub account (otherwise you will need to re-enter your username and password frequently). To download the Mixxx code after you have set up SSH, run this command in your shell:
git clone [email protected]:YOUR-GITHUB-USER-NAME/mixxx.git
Open the .git/config
file in the new mixxx
folder that was created by the above git clone
command with your favorite text editor. Copy and paste the following lines at the top of the file:
[remote "upstream"] url = https://github.com/mixxxdj/mixxx.git fetch = +refs/heads/*:refs/remotes/upstream/* fetch = +refs/pull/*/head:refs/remotes/upstream/pr/*
This makes it easy to interact with the upstream mixxxdj/mixxx repository on GitHub's server. To download the latest updates, run
git fetch upstream
That will only download the updates though. To change the files on your computer to match the latest updates, run
git checkout upstream/master
to switch to the upstream master branch.
Configure Git so that you push to your fork by default for new branches:
git config remote.pushDefault origin
Developers propose changes to the Mixxx code by opening “pull requests” on GitHub. The currently active pull requests are listed on the GitHub website. Testing these pull requests and providing your feedback is really helpful and a great way to start getting involved in Mixxx even if you don't know how to program. To test a pull request, set up .git/config as described above and download the latest updates:
git fetch upstream
Find the number of the pull request from the the GitHub website, then run
git checkout upstream/pr/PULL-REQUEST-NUMBER
to switch the code files on your computer to the proposed changes. (If you are testing your own pull request, use the name of the branch you created on your computer instead of upstream/pr/PULL-REQUEST-NUMBER
.) Now you can Compile Mixxx From Source Code to test the proposed changes. Give feedback by commenting on the pull request on the GitHub website.
Alternatively, on Windows, you can use the builds from AppVeyor instead of compiling pull requests yourself. Refer to the Testing page for details.
When you are ready to start editing the Mixxx code, create a new Git branch for your work. Git branches are a way to organize your changes into separate workspaces, which allows you to work on multiple bugs/features in parallel and independently propose them for inclusion in Mixxx whenever each one is ready. Every time you start fixing another bug or working on a new feature, make a new branch following these steps:
First, download the latest updates before you start working on new changes:
git fetch upstream
Create a new branch on your computer called 'fixing_some_bug' starting from the upstream/master branch:
git checkout -b fixing_some_bug upstream/master
If you want your changes included in a current beta release or a bugfix point release (such as 2.1.1), start your new branch from the release branch instead of the master branch, for example:
git checkout -b fixing_some_bug upstream/2.1
Doing this every time you start working on a new feature or bug fix will allow you to propose your new set of changes for inclusion in Mixxx independently of what you were working on before. If you do not do this first, when you make a pull request for inclusion in Mixxx (see below), both what you were working on before and your new changes will be included in the pull request.
First you need to set your name and email address. If you don't do this then your commits will not be associated with your name (or your account on GitHub) and you won't get the glory and recognition you deserve! For your commits to be associated with your GitHub account, make sure to use an email address that is associated with your GitHub account.
git config --global user.name "Your Name" git config --global user.email "[email protected]"
Also, configure Git to use the text editor of your choice. This will be used when writing messages describing your commits:
git config --global core.editor nano
Running git status
will show which files have changes that have not been committed. Running git diff
will show a color coded diff comparing your uncommitted changes to the last commit made on that branch. GUI Tools are helpful for this. When working on code, you may end up trying some changes that you do not end up needing. Reviewing your own code is helpful for making sure you only commit the changes that are needed.
Before committing your changes in Git, you first have to tell it what changes you want to “stage” for inclusion in the commit. You do this using the git add
command. Once you have staged your changes, you can use git commit
emacs src/engine/enginebuffer.cpp # Change enginebuffer.cpp git add src/engine/enginebuffer.cpp # Tip: pressing tab will only autocomplete file names of files that have changed. git commit -m "Bugfixes to EngineBuffer."
If you omit the -m “COMMIT MESSAGE” at the end, Git will automatically open the editor you have configured for Git. Type your commit message, then save this file in the editor to make the commit.
Instead of using git add
and git commit
, you can use a GUI Git client to pick what changes to include in a commit. This is helpful for splitting a large set of changes into smaller, independent commits, which makes it easier for other developers to review your code.
When you make a commit in Git, that commit only exists on your computer until you push it to a remote repository to share with others. To push commits to another repository, configure the branch on your computer to follow a branch in a remote repository. You can do this in one step together with your first push:
git push --set-upstream origin your_branch_name
This sets up your branch to push commits to the fork for your user on GitHub's server. Once you have run this initial command, you can push more commits on that branch by simply running git push
.
When you are ready to propose the commits in your branch for inclusion in Mixxx, first push your latest commits (refer to the sections above). Then, go to the upstream mixxxdj/mixxx repository on GitHub's website. If you have pushed to your fork recently, you will see a message prompting you to make a new pull request. If you see that, click it. Otherwise, click the “New pull request” button.
On the page for making a new pull request, click the link that says “compare across forks”. Leave the base fork as mixxxdj/mixxx. By default, the base branch is the master branch, but if you want your changes included in a different branch, be sure to select it here. For the “head fork”, select the fork for your GitHub user. Where it says “compare”, select the branch on your fork that you have been working on. Write a title and description for your pull request. Scroll down to check that the changes in the pull request only include the changes you intend. When you are ready, click the “Create pull request” button.
A Mixxx team member will review and comment on your pull request. Work with your reviewer to address their comments. To add new changes to your pull request in response to review comments, add commits to the branch on your computer and push them. When you push new commits, they will automatically be included in the pull request you already have open. When the changes are approved, we will merge them into the upstream Mixxx code!
Please note that Mixxx is an entirely volunteer project, so do not expect anyone to review your code instantly. We try not to let pull requests sit without review for more than a week or two, but please leave a friendly comment on your pull request to remind us about it if you do not hear any updates for a while. If you test and review other developers' pull requests, they will likely feel more inclined to reciprocate and review yours more quickly.
To work on another bug or feature, create a new branch.
If there have been new changes in the upstream code that you would like to include in a branch you are working on, run:
git checkout your_branch_name git pull # a shortcut for 'git fetch upstream && git merge upstream/master'
If you want to try the latest code from upstream without any of your own changes, run:
git fetch upstream git checkout upstream/master
Note that there is usually no need to use the origin/master branch or maintain a master branch on your computer. Only developers with write access to the mixxxdj/mixxx repository need to maintain a local master branch for occasionally pushing directly to the master branch.
A full guide for how to use Git is outside the scope of this article. Git is an awesome tool, but it can be confusing to learn, so we strongly suggest you have a look at one of these tutorials now that you know the basics. They are sorted according to the time needed to complete them. The first one is the shortest.
All of these tutorials are interactive and guide you with helpful graphics. Don't worry if you don't understand everything the first time.
If you are working on a mapping or skin and you want to work on other changes to Mixxx at the same time, you can have both git branches open simultaneously with git's handy worktree feature. This will let you use your mapping or skin in development while testing your other branches. If your git repository is at ~/software/mixxx, you can set this up for a controller mapping by running:
$ cd ~/software/mixxx $ git worktree add mapping your_mapping_branch_name $ echo mapping >> .git/info/exclude # Tell git to ignore your mapping branch when looking at ~/software/mixxx $ ln -s ~/software/mixxx/mapping/res/controllers ~/.mixxx/controllers
Now your mapping branch is open at ~/software/mixxx/mapping. This does not have to be under ~/software/mixxx (in which case you can skip adding the directory name to .git/info/exclude). You can work on your mapping in ~/software/mixxx/mapping/res/controllers and make commits when your current directory is ~/software/mixxx/mapping or any directory under that. In ~/software/mixxx, you can work on any other changes and switch between branches without affecting your mapping branch open at ~/software/mixxx/mapping.
If you want to work on a skin, you can set up another git worktree and run mixxx with the --resourcePath
option set to the res
directory under that worktree.