How can I have Github on my own server?

前端 未结 16 1670
鱼传尺愫
鱼传尺愫 2020-12-07 09:53

Is there anything out there like Github that is for your own local server? I am curious if there is like a PHP script or even a desktop client that mimics Github\'s functio

相关标签:
16条回答
  • 2020-12-07 10:20

    What features in github are you looking for?

    If you don't want the collaboration, pull requests etc. but just want your own repositories to be viewable, git instaweb will create something for you.

    0 讨论(0)
  • 2020-12-07 10:24

    I tried gitosis that is fully command line. And I chose this one.

    Being a Java guy, I also looked with interest to Gitblit.

    0 讨论(0)
  • 2020-12-07 10:25

    You can try

    • http://gitorious.org/
    0 讨论(0)
  • 2020-12-07 10:25

    You can run Git (not the whole Github) via Apache HTTP Server, so that you host the Git repo on your server's filesystem and expose it via HTTP. You get all Git functionalities, but obviously you won't be able to pull-request or track issues. Any tool attached to your self-hosted Git repo can implement the rest of the features.

    Reference: http://git-scm.com/docs/git-http-backend

    0 讨论(0)
提交回复
热议问题