Development/GitHub Workflow
The following documentation is based on the BestieTemplate.jl developer documentation, but has been adapted to our needs.
Before you start coding
- Check if a GitHub issue exists for the topic (e.g. bug, new feature, etc.). If not, create one with a brief description of the problem or feature idea.
- Discuss your approach with the maintainers, either in the issue or through another channel.
First time clone & development version
Follow the instructions below to clone the repository and create a `dev' version if you are working with this repository for the first time.
Having a dev
(development) version of a Julia package allows you to import a local version of the package with your changes instead of the registered package version (which is static).
a) If you have writing access to the GitHub repository
(UnfoldSim
is used as an example)
- Option 1: Clone this repository using
git clone
. - Option 2 (recommended): Use the Julia
dev
command to create a development version of the package:- Start a Julia session and run
cd("/path/to/your/project")
to navigate to your project folder. - Press
]
to enterpkg
mode. - Run
dev --local UnfoldSim
to clone the package to./dev/UnfoldSim
and automatically add it to your Julia project environment.
- Start a Julia session and run
If you have writing rights, whenever upstream is mentioned below, use origin instead.
b) If you don't have writing access for the GitHub repository
Fork the UnfoldSim.jl repository.
Clone your repository (this will create a
git remote
calledorigin
).Add the UnfoldSim.jl repository as a remote:
git remote add upstream https://github.com/unfoldtoolbox/UnfoldSim.jl
This will ensure that you have two remotes in your git: origin
and upstream
. You will create branches and push to origin
, and you will fetch and update your local main
branch from upstream
.
You can also use the dev
command on your fork. Run ]dev --local url/of/your/fork
to clone the package to ./dev/UnfoldSim
and automatically add it to your Julia project environment.
Revise.jl
Further, we recommend to use Revise.jl
: a Julia package which allows you to track source code changes in a running Julia session without need to restart it and reload the package.
We recommend to install it in the global environment:
julia> # Press ]
pkg> activate
pkg> add Revise
If you added Revise.jl globally, it's generally a good idea to start the package at Julia startup. To do this you just have to create/find your .julia/config/startup.jl
and add using Revise
to it.
Working on a new issue
We try to keep a linear Git history in this repository, so it is important to keep your branches up-to-date.
Fetch from the remote and fast-forward your local main
git fetch upstream git switch main git merge --ff-only upstream/main
Branch from
main
to address the issue (see below for naming)git switch -c 42-add-answer-universe
Push the new local branch to your personal remote repository
git push -u origin 42-add-answer-universe
Create a pull request to merge your remote branch into the
main
branch of the original UnfoldSim.jl repository.
Branch naming
- If there is an associated issue, add the issue number.
- If there is no associated issue, and the changes are small, add a prefix such as "typo", "hotfix", "small-refactor", according to the type of update.
- If the changes are not small and there is no associated issue, then either create an issue first, or discuss in another channel with the maintainers.
- Use dash separated imperative wording related to the issue (e.g.,
14-add-tests
,15-fix-model
,16-remove-obsolete-files
).
Commit messages
- Please refrain from making huge commits; rather make smaller commits for specific changes.
- Use imperative or present tense, for instance: Add feature or Fix bug.
- Have informative titles (i.e. do not: fix UnfoldSim; do: fix issue creating events).
- When necessary, add a body with details.
- If there are breaking changes, add the information to the commit message.
Before creating a pull request
Make sure the tests pass (see Testing).
Add appropriate documentation (ideally using the Docstring templates).
Follow the formatting rules from
JuliaFormatter.jl
(see Formatting).Fetch any
main
updates from upstream and rebase your branch, if necessary:git fetch upstream git rebase upstream/main BRANCH_NAME
Then you can open a pull request and work with the reviewer to address any issues.
Working with a pull request
Ideally, one pull request should solve one problem. Otherwise, it becomes difficult to review and track changes.
Written by Judith Schepers.