Skip to content

lordcodes/swifthooks

Repository files navigation

SwiftHooks

Swift Package Manager Latest release Twitter: @lordcodes


This is SwiftHooks - a CLI tool to install Git hooks that can be distributed alongside a project and shared by all the contributors.

 

FeaturesInstallUsageContributing

Features

☑️ Store Git hooks within a project

Provide Git hooks for all project contributors to share.

☑️ Easily install into Git

Simply run a single command and a Git hook will be installed that runs your project-specific Git hooks.

☑️ Easily uninstall

A command is provided to remove any installed hooks.

 

Install

▶︎ 🖥 Standalone via Swift Package Manager

SwiftHooks can be easily installed globally using Swift Package Manager.

 git clone https://github.com/lordcodes/swifthooks-swift
 cd swifthooks-swift
 make install

This will install swifthooks into /usr/local/bin. If you get a permission error it may be that you don't have permission to write there in which case you just need to adjust permissions using sudo chown -R $(whoami) /usr/local/bin.

You can uninstall it again using make uninstall which simply deletes it from /usr/local/bin.

▶︎ 🍀 Mint

You can install SwiftHooks on MacOS using Mint as follows:

mint install lordcodes/swifthooks

▶︎ 📦 As a Swift package

To install SwiftHooks for use in your own Swift code, add it is a Swift Package Manager dependency within your Package.swift file. For help in doing this, please check out the Swift Package Manager documentation.

.package(url: "https://github.com/lordcodes/swifthooks", exact: "0.4.0")

 

Usage

Configure project hooks

Git hooks should be stored inside a .git-hooks directory, which should be relative to the working directory. Inside create a folder named according to the required Git hook and then place the scripts you wish to run in an executable form within the hook folder.

For example:

.git-hooks/commit-msg/prepend-jira-issue-id.sh
.git-hooks/prepare-commit-msg/prepend-jira-issue-id.sh

Ensure the scripts are executable with chmod a+x .git-hooks/commit-msg/prepend-jira-issue-id.sh.

🖥 Via the Standalone CLI

USAGE: swifthooks <install|uninstall|version> [-q|--quiet]

ARGUMENTS:
  <install>               Installs Git hooks that run's hooks stored in project.
  <uninstall>             Uninstalls Git hooks that were installed.
  <version>               Prints out the current version of the tool.

OPTIONS:
  -q, --quiet             Silence any output except errors 

📦 As a Swift Package

To use SwiftHooks within your own Swift code, import and use the public API of SwiftHooksKit.

import SwiftHooksKit

// Configure printing
SwiftHooks.shared.printer = ConsolePrinter(quiet: false)

// Install hooks
try InstallHooksService().run()

// Uninstall hooks
try UninstallHooksService().run()

Contributing or Help

If you notice any bugs or have a new feature to suggest, please check out the contributing guide. If you want to make changes, please make sure to discuss anything big before putting in the effort of creating the PR.

To reach out, please contact @lordcodes on Twitter.