GitXplorerGitXplorer
g

homebrew-utils

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
506a9e40d2bb4062d269f5ba3c9b709c19776eab

Brew formula update for ghorg version v1.11.0

ggoreleaserbot committed 4 months ago
Unverified
5d1a491d8cc07aef5868a970b867620bd024848c

Brew formula update for ghorg version v1.10.0

ggoreleaserbot committed 4 months ago
Unverified
2474ab1c880dfc6defe511629601990174baa1cf

Brew formula update for ghorg version v1.9.13

ggoreleaserbot committed 6 months ago
Unverified
cdeab08b3446d3f1f3e1995d81c8430620766553

Brew formula update for ghorg version v1.9.12

ggoreleaserbot committed 8 months ago
Unverified
7d251bdc12ce014a289924bb9a8c180b741c611f

Brew formula update for ghorg version v1.9.11

ggoreleaserbot committed 9 months ago
Unverified
0d232417fd4769c6b2f13024a1ad241a8908e976

Brew formula update for ghorg version v1.9.10

ggoreleaserbot committed a year ago

README

The README file for this repository.

homebrew-utils

Updating Ghorg

  1. update changelog and bump version in ghorg version cmd
  2. Create new release
  3. run brew create https://github.com/gabrie30/ghorg/archive/v1.x.x.tar.gz
    • delete the old one if it exists
  4. Update ghorg.rb to have the new release sha, and ghorg_version

class Ghorg < Formula
  ghorg_version = "1.3.0" <-----

  desc "Quickly clone an entire org/users repositories into one directory"
  homepage "https://github.com/gabrie30/ghorg"
  url "https://github.com/gabrie30/ghorg/archive/#{ghorg_version}.tar.gz"
  version ghorg_version
  sha256 "1a219f47e5e7a221680128999b13d095fbd12dd79f1a9ae823027987d62c4325" <-----
  license "Apache-2.0"
  
  ...