# Freshrss Git

> FreshRSS version control, git workflow, branching strategy (edge/latest), diff/compare, PR changes.

- Skill: `mahabdalla/freshrss-git` (Agent Skill)
- Install (CLI): `npx skillmds@latest add mahabdalla/freshrss-git`
- Raw SKILL.md: https://api.skillmd.com/api/skills/mahabdalla/freshrss-git/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: mahabdalla (https://skillmd.com/u/mahabdalla)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/mahabdalla/freshrss-git

---


# FreshRSS working with version control (git)

FreshRSS uses a rolling-release approach with a main branch called `:edge`.
This is the branch to target for most pull requests.

Releases are tracked in a branch called `:latest`.

## Check changes made in the current branch

Also useful to locally check the state of a pull-request (PR).

```sh
git diff edge...HEAD
```

## Before commiting

```sh
make fix-all
make test-all
```

---
> Converted and distributed by [TomeVault](https://tomevault.io) | [Claim this content](https://tomevault.io/claim/freshrss/freshrss)

