
Git Workflow Guide for LundTaxR Contributors
This guide will help you contribute to the LundTaxR project, even if you have little or no experience with git or GitHub. Follow these steps to make changes and submit them for review.
1. Install Git
- Download and install git from https://git-scm.com/downloads
- On Windows, you may also want to install GitHub Desktop for a graphical interface.
2. Clone the Repository
Open a terminal (or Git Bash on Windows) and run:
git clone https://github.com/mattssca/LundTaxR.git
cd LundTaxR
3. Switch to Your Own Branch
In the same temrinal, run the following (replacing name with your name):
git checkout -b name-dev
#e.g
git checkout -b pontus-dev
git checkout -b carina-dev
git checkout -b gottfrid-dev
7. Create a Pull Request (PR)
- Go to https://github.com/mattssca/LundTaxR in your web browser.
- You should see a prompt to “Compare & pull request” for your branch. Click it.
- Add a description of your changes and submit the pull request.