Skip to content

postsai/replay-webhook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

replay-webhook

Invoke Github style webhooks from the history of an existing Git repository.

Usage

usage: replay.py [-h] --home-url URL [--name NAME] --url URL repo


optional arguments:
  --help                    show this help message and exit
  --home-url URL            Base URL of the web frontend
  --include-master-commits  Also include commits on other branches that are part
   --name NAME              Name of repository
  --url URL                 URL of the webhook to invoke

positional arguments:
  repo                      path to repository

Tips

You can checkout all remote branches as local branches with this oneliner:

for i in `git branch -a | grep remotes/origin`; do git branch --track ${i#remotes/origin/} $i; done

Dependencies

replay-webhook dependes on python-git.

Legal

(C) Copyright 2016 Postsai. replay-webhook is released as Free and Open Source Software under MIT license.

About

Invoke webhooks for past commits

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages