Server side - git server construction
PHP中文网
PHP中文网 2017-05-02 09:27:32
0
2
551

Hello teachers, I want to build a git server to host the code in the near future. Apache is required for HTTP transmission. Since the project is relatively small, there is no need for user management functions. However, following online tutorials, I made the following settings for apache

When following the steps below, git push cannot be successful
git init --bare project.git
cd project.git
git init
git add .
git commit - a -m 'origin create'
git remote add origin http://127.0.0.1/git/project.git
git push origin master
chown -R apache: apache. The main reason is that the git warehouse must be changed to apache
When creating a git server for the first time, there is an error in the git client submission. Configure the following command on the git server
git config receive.denyCurrentBranch ignore
error prompt Yes
git push origin master has the following error
fatal: unable to access 'http://127.0.0.1/git/test/': The requested URL returned error: 403

Please ask the teachers for some guidance. .

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(2)
过去多啦不再A梦

Recommend GOGS We are using this now and it is pretty good, it is very easy to install. Just run a script and forget about anything else. Everything else just needs to be filled in one by one according to the form on the page.

左手右手慢动作

When you add the server address, do you need to write less than one slash?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template