bonobo

Bonobo GIT not firing post-receive hook

删除回忆录丶 提交于 2021-02-07 10:26:22
问题 I did some searching and tried a few things to get an answer to this question but not having any luck. My post-receive script runs fine if I run it from bash. Also, I have changed the git to a full version that does not come with the Bonobo download. I have anonymous set so anyone can pull from the repository to make sure that doesn't cause the issue. Does anyone have some ideas I can try out? 回答1: As mentioned in this thread Bonobo Git Server itself doesn't provide any interface for adding

Local Git Server Configuration (using bonobo)

孤街醉人 提交于 2019-12-24 10:36:43
问题 I'm trying to install Bonobo Git Server on my local computer. I use windows 8.1 . I've enabled IIS by following this. And I've followed Bonobo's installation steps ..! I actually stuck on this step: Convert Bonobo.Git.Server to Application in IIS When I convert it to application, the result will be just one case: But seems the right thing should be 3 options after converting: (since it's obvious in their tutorial) Also when I open this link http://localhost/Bonobo.Git.Server , it will be

Bonobo Git Server Configruation: HTTP Error 500.19 - Internal Server Error at line 71

狂风中的少年 提交于 2019-12-24 00:53:14
问题 I have tried to configure Bonobo Git Server. I have followed the included instructions, and after trying to visit the server for the first time, I get the following error: There is a similar question; however, it gives an error at one line prior and the solution the author answered (though not accepted) did not seem to affect the error occurring in my circumstances. I am running Bonobo Git Server on Windows Server 2012R2 under IIS 8.5 using Azure. IIS is correctly configured in that I can

Git - post-receive hook not working on remote windows server

蓝咒 提交于 2019-12-20 03:10:26
问题 I'm trying to get a git post-receive hook working on Windows. I'm using Git 1.7.9 (Msysgit) and have a repo locally and a bare repo on a remote server. I can fetch, commit, push etc. I've set up a post-receive hook that should checkout the files into a working folder (part of the deployment process) but it doesn't seem to work. Here's what I do: Change a file, stage and commit it Push to remote server - successfully Expect to see the echo - don't see the echo Check working folder on server -

Running a Git Server on Windows Server 2012 R2/IIS

淺唱寂寞╮ 提交于 2019-12-14 03:44:12
问题 Edited with Answer - Q: We would like to run a three-tier programming git structure here at work. Programmers would be able to use Git on their local machine, clone push and fetch from a remote repository running on a "Production" virtual machine, and then finalized code on the "Production" VM is then pushed to a "Deployment" machine for use. We're using Windows Server 2012 R2 and I am coming up with very little information on how to do this. I installed the latest Bonobo git server on the

Setting up Bonobo 5.0.0 with Windows authentication

元气小坏坏 提交于 2019-12-11 23:04:22
问题 I'm trying to install Bonobo 5.0.0 on Windows 7 + IIS 7.5 with Windows authentication. When I go to the homepage ( http://domain/bonobo ), I'm prompted for my Windows username/password and after that it redirects back to the root to look for a route called windowsAuthCallback: http://domain/windowsAuthCallback?id=xxx Obviously this gives me a 404 error. I have authentication set to 'anonymous' in IIS and 'Windows' in the Bonobo web.config and I'm not sure what I'm doing wrong. UPDATE Not sure

Git new remote branches

本秂侑毒 提交于 2019-12-08 08:07:55
问题 I tried to create a new branch in git. The new branch name is "1.0.0". Why is that after I push it into remote, the branches display become '1.0.0.x-dev'. Why is it adding 'x-dev' at the back? How can I have it to be original name '1.0.0' on the remote repository? Thanks. 来源: https://stackoverflow.com/questions/22398643/git-new-remote-branches

Bonobo Git Server - HTTP Error 500.19 - Code: 0x80070021

巧了我就是萌 提交于 2019-12-06 00:58:36
问题 Is giving this error when accessing the system after installation: OS: Windows 2012 R2 回答1: I hit the same problem. I believed somehow IIS lost registration of MVC framework. Redo the registration by: Windows 8+ / Windows Server 2012+ - Windows Features: IIS -> WWWS -> Application Development Features -> ASP.NET 4.5. Other - Run %windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -ir with administrator privileges 回答2: Problem solved after running: %windir%\system32\inetsrv\appcmd

Bonobo Git Server SMTP Settings

你。 提交于 2019-12-06 00:57:19
I have Bonobo Git Server version 3.6 installed on my Win 7 PC. Today, I tried on forgotten password, but it popup error message saying Unable to send email. Validate SMTP settings. . How & where can I set the SMTP settings? Bonobo uses standard .NET smtp settings. These can be specified in the web.config for your Bonobo-installation. You can read the details here , but basically you should add a <mailSettings> group under configuration\system.net The following is a working albeit simple example. It is possible to use any smtp server and as you can read in the link, it is also possible to

Running a Git Server on Windows Server 2012 R2/IIS

痞子三分冷 提交于 2019-12-05 21:54:39
Edited with Answer - Q: We would like to run a three-tier programming git structure here at work. Programmers would be able to use Git on their local machine, clone push and fetch from a remote repository running on a "Production" virtual machine, and then finalized code on the "Production" VM is then pushed to a "Deployment" machine for use. We're using Windows Server 2012 R2 and I am coming up with very little information on how to do this. I installed the latest Bonobo git server on the "Deployment" machine and have been testing cloning on the "Production" machine from the command line and