Git related helpers classes.

1.x-dev 2025-03-31 20:30 UTC

This package is auto-updated.

Last update: 2025-03-31 20:33:08 UTC


README

CircleCI codecov

Commands

Why use this package instead of \exec()?

Using these commands instead of directly calling \exec() offers several advantages:

  1. Structured data handling
    Results are parsed into PHP arrays and objects, making them easier to work with than raw command output.

Supported commands

  • start a working area
    • 🛠 git init
    • 🛠 git clone
  • work on the current change
    • 🛠 git add
    • 🛠 git mv
    • 🛠 git restore
    • 🛠 git rm
    • 🛠 git apply
    • 🛠 git stash
  • examine the history and state
    • 🛠 git bisect
    • 🛠 git diff
    • 🛠 git grep
    • 🛠 git log
    • 🛠 git show
    • ✔ git status
  • grow, mark and tweak your common history
    • 🛠 git backfill
    • 🛠 git branch CREATE
    • ✔ git branch --list --verbose
    • 🛠 git branch MOVE
    • 🛠 git branch SET-UPSTREAM
    • 🛠 git branch DELETE
    • 🛠 git commit
    • 🛠 git merge
    • 🛠 git rebase
    • 🛠 git reset
    • 🛠 git switch
    • 🛠 git tag CREATE
    • ✔ git tag --list --verbose
    • 🛠 git tag DELETE
  • collaborate
    • 🛠 git remote
    • 🛠 git fetch
    • 🛠 git pull
    • 🛠 git push
  • config
    • ✔ git config list
    • ✔ git config get
    • ✔ git config set
    • ✔ git config unset
  • other
    • ✔ git --version
    • ✔ git --exec-path
    • 🛠 and lot of other commands

Command - GetStatus

The GetStatus command provides a structured interface to the git status command. It allows you to:

  • Check the status of files in the working directory and staging area
  • Filter by paths
  • Get results as structured data instead of raw text output

Command - GetTags

The GetTags command provides a structured way to retrieve Git tags with various filtering options. It wraps the git tag --list command and allows you to:

  • Filter tags by various criteria (contains, points-at, merged)
  • Sort tags in different ways
  • Parse the results into structured data

stdInput reader

stdInput reader - Supported Git hooks

stdInput reader - Usage

.git/hooks/pre-receive

#!/usr/bin/env php
<?php

use Sweetchuck\Git\StdInputReader\PreReceiveReader;

$reader = new PreReceiveReader(\STDIN);

foreach ($reader as $item) {
    echo 'Old value: ', $item->oldValue, \PHP_EOL;
    echo 'New value: ', $item->newValue, \PHP_EOL;
    echo 'Ref name:  ', $item->refName, \PHP_EOL;
    echo '-----------', \PHP_EOL;
}