...
- Create an account on https://github.com/
Create a remote fork of https://github.com/Taskana/taskana
Info title Fork A Repo (Github Help) Configure git to automatically adjust line endings with each commit
(optional, but recommended)
Code Block language bash git config --global core.autocrlf input
Confiure git to automatically validate your commit messages (more information: Contribution Guide)
Code Block language bash git config core.hooksPath qa/hooks
Create a local clone
Code Block language bash # using https git clone https://github.com/<yourname>/taskana.git # using ssh git clone git@github.com:<yourname>/taskana.git
Create a remote for the upstream project so that it is later easier to retrieve changes from the main repository.
Code Block language bash cd taskana # using https git remote add upstream https://github.com/Taskana/taskana.git # using ssh git remote add upstream git@github.com:Taskana/taskana.git
...