GithubHelp home page GithubHelp logo

git-template's People

Contributors

jhbabon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

craignewkirk

git-template's Issues

Defining multiple hooks to execute doesn't work

For example, this post-checkout:

#!/usr/bin/env ruby

require_relative "hook"

# Put here the name of the scripts that will be executed
# when this hook is called.
scripts = {
  # These scripts must be in the directory:
  #     hooks/post-checkout.d/
  # "post-checkout" => %w[],

  # You can execute other scripts in other directories,
  # like `shared` or `utils`:
  #     hooks/shared.d/
  # "shared" => %w[noop ctags],
  # To execute a script in background pass the `:bg` along
  # with the name of the script, as an array.
  # Here we can execute the `ctags` script in background:
  "shared" => [
    ["bundler", :bg],
    ["ctags", :bg],
  ],
}

Hook.new(scripts).call

Only executes ctags shared hook.

Allow the possibility to chain background hooks

Some background hooks could need another one, like running bundler before running ctags. Now each background hook runs separately, but would be nice to chain them.

E.g:

#!/usr/bin/env ruby

require_relative "hook"

# Put here the name of the scripts that will be executed
# when this hook is called.
scripts = {
  # These scripts must be in the directory:
  #     hooks/post-checkout.d/
  # "post-checkout" => %w[],

  # You can execute other scripts in other directories,
  # like `shared` or `utils`:
  #     hooks/shared.d/
  # "shared" => %w[noop ctags],
  # To execute a script in background pass the `:bg` along
  # with the name of the script, as an array.
  # Here we can execute the `ctags` script in background:
  "shared" => [
    [["bundler", "ctags"], :bg],
  ],
}

Hook.new(scripts).call

Also, a better API to register hooks could be nicer. So many arrays is confusing.

STDIN is not correctly passed

The subprocess need to read the stdin because some git hooks, (like pre-push) can receive info over that pipe.

Because there are more than one hook per type, there must be a way to pass the same content to each hook, with UNIX pipes or something similar.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.