Giter Club home page Giter Club logo

commithooks's Introduction

Post Commit hook utility
========================

This module graps the git log from your last commit and uses it to:

	1. Update GUS items
	2. Create a code review
	
To use this, create the following commit-msg and post-commit in your .git/hooks directory
of your repository and make executable

commit-msg:
    #!/usr/bin/env python
    import sys
    from git.Git import CommitMessage
    cm = CommitMessage()
    cm.validate(sys.argv[1])

post-commit:
	#!/usr/bin/env python
	
	from git.PostCommit import PostCommit
	
	pc = PostCommit()
	pc.commit()
	
You can also utilize a the webservice to do the updates asynchronously.
The web service is a django project in the internal git hub.  Just clone
[email protected]:/halifax/PostCommitService.git and fire it up.

	#!/usr/bin/env python
	
	from git.PostCommit import PostCommit
	
	pc = PostCommit()
	pc.remote()
	
The default server is localhost:8000.  If you want to specify a server

	#!/usr/bin/env python
	
	from git.PostCommit import PostCommit
	
	pc = PostCommit()
	pc.remote(server="my.remote.com:8000")

It provides a module that parses the last commit log and gives you

Author:
	- name
	- email
	
Comment:
	- title (parses first line as title)
	- overview (remaining lines)
	- annotations (as a dictionary.  @key value in comments)
	
Changes:
	- list (Files that were modified/added/deleted in the commit)
	
Patch:
	- diff (A unified diff file that can be used to create code reviews)

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.