Tagged Questions
0
votes
1answer
21 views
Can I set a hook using API on public repo owned by someone else?
Is it possible to register an event hook on a public repository not owned by me using the github API? In other words, is there a way to listen to repo updates without asking the owner to add a hook ...
2
votes
2answers
39 views
github api does not return my post-receive web hook
I have manually added a web hook to my repository, but when I query the repository using the API I get
{
"message": "Not Found"
}
what is wrong?
the url: ...
0
votes
1answer
50 views
How to stop a pull request being closed with unmerged commits
Could anyone suggest a way of stopping/informing a user that there is an open pull request on github on a branch they are trying to delete?
We currently use the following branches master,rc,hotfix ...
0
votes
0answers
71 views
Create Github hook to trigger Bamboo build
I created a Github Service hook to trigger a build in Bamboo. This is the Build Key I entered in Github
master:GAUTR-UNIT
This only triggers the master branch. How can I trigger the other branches ...
0
votes
0answers
45 views
Directly access PHP file in Wordpress root needed for auto-pull with Github
I've been following Dan Eden's Github Workflow guide, and I'm on the last stage where you make a PHP file and put
<?php `git pull`; ?>
in there and hook it up to Github through the Service ...
1
vote
2answers
95 views
Setting up post-receive hook for bare repo
I have a bare repo set up in my ubuntu server.
After I push to my bare git repo to the server:
$ git push origin master
I want the contents of my non bare repo to be updated with the latest push ...
1
vote
2answers
39 views
Can I switch to another branch, commit to it, and switch back, in a commit-msg hook?
I want to insert the first few chars of the commit hash and the commit message automatically into a file in the gh-pages branch any time that I commit to master.
Currently using this post-commit ...
3
votes
1answer
443 views
How to install and use gerrit with eclipse?
I want know how to install and use gerrit in eclipse.
I does not found any easy and helpful documentation for the same.
I already have Git plugin installed in eclipse and I am using it, now I want to ...
3
votes
2answers
737 views
How can I automate Pivotal Tracker & Github Integration?
Pivotal Tracker and Github have great integration: Once it's set up, each commit which is prefixed by the Pivotal Tracker ID will appear under the corresponding Pivotal Ticket automatically, for an ...
1
vote
0answers
74 views
GitHub for mac not behaving properly with post-commit hook
I usually use GitHub for Mac to commit code to my GitHub projects because it makes it a bit quicker to do. For my current project, I had to set up the following pre-commit hook:
if [ -e ...
1
vote
1answer
73 views
Is there a way to lock individual files or directories on fork when using github?
We are a team of 60+ developers working on the same product and are moving from SVN to Github. We have a process in SVN where in individual files are locked and whenever a developer wants to commit ...
2
votes
0answers
440 views
jenkins not responding to github webhook`
I got Jenkins talking to Github, and manually I can initiate a build and it succeeds! This is a private Github repo.
I can't get the webhook to work, so that when I check-in in my repo, Jenkins ...
0
votes
0answers
31 views
Using Push Hooks with Git for Licensing
I would like to implement licensing at my organization on Github / Bitbucket by requiring all files committed that are not metadata files (readmes, etc.) to have some licensing blocks.
I assume that ...
1
vote
0answers
47 views
Pushing Git repo through SSH chain
I just started a new job, which is trying to start using Git for version control. I am trying to help them with the process but it is turning out to be more complicated than anticipated.
Currently, ...
0
votes
1answer
120 views
Restricting user's push commands privileges
How can I not allow the users to make pushes that are going to create a new branch in remote repository?
And is there anyway not to let the user push to a certain remote branch in github ,e.g restrict ...
2
votes
2answers
574 views
How can I add a custom git hook to a GitHub Enterprise repo?
I've fired up an instance of GitHub Enterprise (11.10.272) and created a repository. I've written a pre-receive hook in Ruby which I'd like to use with that repository.
GitHub Enterprise, like ...
1
vote
2answers
138 views
Exclude commits from Git hooks?
Is it possible to exclude certain commits from being pushed to a service hook on Github? For example, if I only edit the Readme file of a project, it makes no sense to re-test the entire application ...
2
votes
1answer
2k views
Run tests in Jenkins automatically after each commit (change)
I an using jenkins and I would like my tests to run automatically after each commit.
I followed the instructions in the following link:
...
7
votes
0answers
639 views
POST hook on Bitbucket
How to use the POST url in bitbucket on private Jenkins?
I have been experiencing problems with bitbucket and their post commit.
Description :
...
9
votes
10answers
7k views
How can I automatically deploy my app after a git push ( GitHub and node.js)?
I have my application (node.js) deployed on a VPS (linux). I'm using git hub as a repository. How can I deploy the application automatically, on git push ?
1
vote
1answer
420 views
Set the name of a ZIP downloadable from GitHub or Other ways to enroll Google Transit project on GitHub
I wan to start a Google Transit project (a city transport feed for google maps) and for the purpose of collaboration I want to use GitHub. Now one great thing is that GitHub is offering a ZIP file ...
10
votes
1answer
1k views
How can I have linked dependencies in a git repo?
In my scripts, I often use libraries (mine or others') that have their own repos. I don't want to duplicate those in my repo and get stuck with updating them every time a new version comes out.
...
0
votes
3answers
160 views
How to keep a default config file in Git repository while allowing maintainers to use a custom version?
We have a .xml config file in a public Github repository, and we want to include a basic, default version of that .xml file available for new users.
However, the package maintainers want to be able ...
3
votes
4answers
2k views
Receiving emails on GIT push
I am used to subversion, where the collaborate group would receive an email whenever someone commits.
Is there a similar feature on GitHub, so the people working on the repository receives an email ...
4
votes
2answers
2k views
Post Commit Hook Not Running
My post commit hook is not running after git. I have verified that the hook does work if I just run it from the terminal. The code in the hook is:
#!/bin/sh
#.git/hooks/post-commit
# An example ...
5
votes
2answers
585 views
Dissallow deletion of Master branch in git
I'm trying to setup a git hook that will disallow anyone to delete the master, alpha, and beta branches of our repository. Can anyone help with this? I have never done a git hook so i don't want to ...