I am trying to get branch name of the last commit pushed to git that triggered my post-commit groovy script, anybody has an idea that how can I do this??
how to get latest commit ref on giblit post commit hook
349 views Asked by Marcos Costa Pinto At
1
There are 1 answers
Related Questions in POST-COMMIT-HOOK
- Fail to run git command in specific directory in global post-commit hook
- Git command to retrieve contents of staged file?
- Jenkins Job failed for 'mlDeployApp' task due to .svn folder
- Why doesn't `git cherry-pick` (without `--no-commit`) run my post-commit hook?
- gitlab commit thread created automatically on a condition
- Bash script won't exit on input command
- svn server: how to manipulate existing revision
- Why do I get an authentication error when checking if a branch exists in svn?
- Why are all my files marked for deletion by Git after I do "git stash pop -q"?
- How to use SVN post-commit hook trigger jenkins build?
- Subversion post commit hook for Jenkins
- Jenkins trigger build URLs
- post-commit hook : run the jenkins job based on project changed in git repository
- run a command in post commit hook when commit a specific path
- Don't execute SVN "post commit hook" when a specific file is committed
Related Questions in GITBLIT
- Using Nginx to proxy the client certificate authentication. Peer closed connection in SSL handshake while SSL handshaking to upstream
- Our GITBLIT/Jetty service has stopped working after new stringent network security at our company
- Git ! [remote rejected] master -> master (failed to lock)
- null pointer in java NIO SSO processor
- remote rejected error in submitting patchset to gerrit via git review
- How do I send a Federation Proposal to GitBlit mirror?
- authenticate private vcs with specific user
- git: allow commits only for specific users
- git submodule add taking longer time
- No SSH link in Gitblit (installed in tomcat ROOT directory)
- Get content versionned file in groovy GitBlit hook
- GitBlit email notification on push and commit
- Does GitLab accept Federation?
- GitBlit add a hook
- Gitblit federation with duplicate branches
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
There are many examples of how to get that info. Try this one: https://github.com/gitblit/gitblit/blob/master/src/main/distrib/data/groovy/blockpush.groovy
The important thing to remember is that git can push multiple refs (branches & tags) simultaneously so it's easy to receive more than one.