Questions tagged [github]

Github is an online service for using git repositories to enable social and collaborative coding.

200 questions
1
vote
1 answer

cannot deploy web app from github to azure

I am using GitHub for Azure. Suddenly, Azure stopped deploying from GitHub. It was working fine before. Below is the error i am getting now. Command: "D:\home\site\deployments\tools\deploy.cmd" Handling .NET Web Application deployment. MSBuild…
sukhjit dhot
  • 183
  • 1
  • 1
  • 4
1
vote
1 answer

Ansible to access Github: become causes Permission denied (publickey)

Objective Would like to understand the mechanism why using become to be the ansible user causes "Permission denied (publickey)". User ansible to run ansible-playbook to checkout a Github repository. SSH keys have been copied with ssh-copy-id with…
mon
  • 235
  • 3
  • 10
1
vote
1 answer

Jenkins login using GitHub Authentication failed being administrator

I was setting up authentication mechanism for our organization jenkins, which had no security mechanism, "ananoumos" can do anything, delete jobs,build etc. I did Install github-oauth jenkins plugin In my https://github..com/ a. OAuthApplication…
sandejai
  • 131
  • 1
  • 6
1
vote
1 answer

EC2 Cloudformation - userdata using powershell to retrieve powershell scrips from GitHub

I have a AWS cloudforamtion - whih build my entire VPC with subnets etc - within this CF builds a windows 2012 server - we want to bootstrap this server under user data so it become a domain controller. All our ps1 scripts are hosted on github.…
1
vote
0 answers

Can I allow configure Jenkins to use LDAP authentication while still allowing company github accounts to make commits?

We are running Jenkins CI as a critical application in our organisation. I've recently set up an openLDAP server and I am looking to migrate all of our applications to this over time. The LDAP configuration for Jenkins works perfectly well in…
shaneoh
  • 414
  • 3
  • 7
  • 19
1
vote
1 answer

Passphrase-less ssh keys on a puppet master?

Our puppet code lives on github, so we pull to the puppet master. But our github repository is private. Is standard (best) practice to give the puppet master ssh keys to github without passphrase (what github calls a deploy key)? Can/should I do…
jma
  • 425
  • 6
  • 16
1
vote
1 answer

Jenkins: use ssh-agent and git plugins together

So, I have the following situation: a server with dedicated users for each project (e.g. foo) and a jenkins server which runs as a jenkins user. I've generated an SSH key pair for my foo user and added the public one as a deploy key to a github…
Creynders
  • 153
  • 2
  • 7
1
vote
1 answer

Nginx confing to github pages and home page

I am trying to configure Nginx to use a domain like proxy pass to github pages, and also to have a landing page on the root domain. With this configuration the proxy to githubpages work fine, but if I check example.com it goes to github pages…
pablogg
  • 13
  • 3
1
vote
1 answer

Sync failure between Gerrit & Github for Windows client

I've set up a POC Gerrit server, and am able to push to it via the Git Command Line. I'm trying to set it up so that less experienced colleagues can use the Github for Windows client to sync commits with Gerrit but the sync always fails. I notice…
1
vote
1 answer

Why does nginx redirect to URLs with a trailing slash?

I have set up a reverse proxy to allow our CD software to be accessed through HTTPS. This is my configuration: server { listen 443; server_name build.example.com; ssl_certificate …
Oliver Salzburg
  • 4,635
  • 17
  • 55
  • 82
1
vote
1 answer

How does Bitbucket or GitHub save the repositories?

I'm asking this question because in my office we are about to migrate all our Repos from SVN to GIT. And we are trying to find which one will be the best option. We want to get GitHub or BitBucket because they are free. The advantage of BitBucket is…
mando100
  • 11
  • 2
1
vote
1 answer

GIT - GitHub Repository Setup Viable?

I have a small team of developers and we have purchased a small private repository account. Essentially all we want to do is have this central repository store all of our source code and for each individual developer be able to push and pull to and…
Goober
  • 361
  • 2
  • 4
  • 6
1
vote
1 answer

Automatically send public key to github account

I want to automatically add public key from newly created machine to github account (so it could checkout organization projects). Is there any simple way to do that? Machine OS is Debian Wheezy.
Kuroki Kaze
  • 345
  • 2
  • 5
  • 18
1
vote
0 answers

SVN Server with authentication via Github

One of my users wants me to build an SVN server that uses a specific Github community for authentication. Users who are members of this community should be able to use their Github credentials to access the SVN server. I would expect the flow to…
user213370
  • 11
  • 2
1
vote
0 answers

Getting new tags in Git Push on pre-receive

I'm using pre-receive hooks in GIT (using bash on Linux) to filter the push that are allowed into my repo. I need to filter the push that developers do into my GIT repo, allowing just pushed with this requisites (# is number): # Commits > 0 && #…