This repository contains any documentation related to Kodkollektivet, such as workflows, policy etc.
- You are not allowed to merge your own pull requests (PRs).
- Write good git commits that is relevant.
- Rebase of commits is allowed, BUT dont rebase in a way that obfuscates.
- Create branch for every new PR.
- The repo that is in Kodkollektivets is called upstream and we refer that repo as upstream.
An essintial part of the projects is to get new members in and the existing to understand the changes. By not allowing merging by own PRs or direct pushing to the projects, another member must check and understand the code in the PRs.
Fork a Kodkollektivet repo to your own account using the
Clone the repo from YOUR account to your local computer:
git clone https://github.com/<YOUR_NAME>/<REPO_NAME>.git
Add the Kodkollektivet repo as upstream:
git remote add upstream https://github.com/Kodkollektivet/<REPO_NAME>.git
git pull --rebase upstream master
! Before you begin working for the day pull changes from upstream (the kodkollektivet repo): !
git pull --rebase upstream master
When you are working on a feature or PR create a new branch:
git checkout -b <BRANCH_NAME>
When you push stuff, make sure that you push to YOUR repo:
git push --set-upstream origin <BRANCH_NAME>
git push origin <BRANCH_NAME> # When branch is pushed to remote
Do a pull request from your branch to upstream.
There are three different branch name startouts: ref/, bug/, and fet/.
- ref/ # Refactoring / Improvements
- bug/ # Bug
- fet/ # Feature
- tes/ # Tests
is something that represents the branch.
- Example 1: bug/login-utf-chars
- Example 2: fet/external-containers
- Example 3: ref/faster-boot-time
- Example 3: tes/api-tests