首页 \ 问答 \ 在Windows中托管Git Repository(Hosting Git Repository in Windows)

在Windows中托管Git Repository(Hosting Git Repository in Windows)

目前有没有办法在Windows中托管共享的Git仓库? 我了解您可以在Linux中配置Git服务:

git daemon

是否有一个本机Windows选项,缺少共享文件夹,以托管Git服务?

编辑:我正在使用cygwin安装git来存储和使用Windows中的git存储库,但是我想采取下一步的方式来托管一个可以访问他人的服务的存储库。


Is there currently a way to host a shared Git repository in Windows? I understand that you can configure the Git service in Linux with:

git daemon

Is there a native Windows option, short of sharing folders, to host a Git service?

EDIT: I am currently using the cygwin install of git to store and work with git repositories in Windows, but I would like to take the next step of hosting a repository with a service that can provide access to others.


原文:https://stackoverflow.com/questions/233421
更新时间:2021-12-14 15:12

最满意答案

这是一个已经修复的已知错误( https://github.com/matplotlib/matplotlib/pull/3414 )。

该问题在于处理搜索freetype安装。 如果您安装Linux软件包freetype-dev,您将避免此错误,并能够编译matplotlib

sudo apt-get install libfreetype6-dev

This is a known bug that has been fixed (https://github.com/matplotlib/matplotlib/pull/3414) on master.

The bug is in the handling of searching for a freetype installation. If you install the Linux package freetype-dev, you will avoid this bug and be able to compile matplotlib.

sudo apt-get install libfreetype6-dev

相关问答

更多
  • 当你使用两个FROM指令时,docker会创建两个输出图像,这就是为什么它搞砸了。 首先,删除FROM ubuntu:14.04并且不要在Dockerfile中进行apt-get update ,这是一种不好的做法(每次构建时你的图像都会不同,从而破坏了容器/ Docker的整个目的)。 其次,您可以查看官方python图像Dockerfile以了解安装了哪个版本的pip,例如, python:3.4 (它已经是v8.1.1)。 第三,有一个特殊的形象为你的情况(外部应用程序): python:3.4-on ...
  • 这是一个已经修复的已知错误( https://github.com/matplotlib/matplotlib/pull/3414 )。 该问题在于处理搜索freetype安装。 如果您安装Linux软件包freetype-dev,您将避免此错误,并能够编译matplotlib 。 sudo apt-get install libfreetype6-dev This is a known bug that has been fixed (https://github.com/matplotlib/matp ...
  • 如何确保被调用的是Anaconda发行版中的那个 PATH上的可执行文件从左到右进行检查。 PATH=/home/ejohns/Libraries/Anaconda/bin:$PATH 如果存在,现在将始终使用Anaconda二进制文件。 如果您想使用原生pip ,那么您将需要像这样限定其路径 /usr/bin/pip --version How can I ensure that one which is called is that within the Anaconda distribution ...
  • 我在Ubuntu 14.04 64中运行Kepler和Aptana Studio没有任何问题。 我正在使用我手动安装的Oracle 1.7 JDK / JRE。 这包括在/ usr / local / bin中创建指向java,javaws的链接。 除此之外,我没有调整任何我能想到的东西。 我希望有所帮助; 告诉你这对我有用并没有多大帮助...... Solved it. It turns out that the content assist was there all along (it's worki ...
  • 安装libavahi-compat-libdnssd1 sudo apt-get install libavahi-compat-libdnssd1 下载pybonjour并将其解压缩 tar zxf pybonjour-1.1.1.tar.gz 安装 cd pybonjour-1.1.1 sudo python setup.py install 使用 import pybonjour 另请参阅https://code.google.com/p/pybonjour/为什么需要安装libavahi-c ...
  • 我有同样的问题。 做sudo pip uninstall pyparsing ,然后sudo pip install pyparsing为我解决了它。 I had the same problem. Doing sudo pip uninstall pyparsing and then sudo pip install pyparsing solved it for me.
  • 在将内核更新到3.19.0-22之后可能会发生这种情况。 将核心升级到4.12可能会解决问题。 尝试使用这个, http://www.yourownlinux.com/2015/07/how-to-install-linux-kernel-4-1-2-in-linux.html 我很快就会在这里写下这些步骤,直到那时请打开链接并按照步骤操作。 只有在问题得到解决后才能查看我的博客www.techinnovators.in This might be happening after an update of ...
  • 这个错误 error: [Errno 13] Permission denied: '/usr/local/lib/python3.4/dist-packages/pylab.py' 表示脚本正在尝试写入目录/usr/local 。 以超级用户身份运行该命令: sudo pip3 install matplotlib This error error: [Errno 13] Permission denied: '/usr/local/lib/python3.4/dist-packages/pylab. ...
  • 在Ubuntu 14.04上,您可以从包中安装石墨。 安装石墨网 sudo apt-get install -y graphite-web 安装耳语 sudo apt-get install -y python-whisper 安装碳 sudo apt-get install -y graphite-carbon 您也可以使用脚本 :但使用除外 rm /etc/apache2/000-default.conf 你应该使用命令 sudo a2dissite 000-default On Ubunt ...
  • 我想你只是缺少openssl sudo apt-get install libssl-dev 我不认为pip可以获得这种依赖性 I think you are just missing openssl sudo apt-get install libssl-dev I don't think pip can get that dependency

相关文章

更多

最新问答

更多
  • 获取MVC 4使用的DisplayMode后缀(Get the DisplayMode Suffix being used by MVC 4)
  • 如何通过引用返回对象?(How is returning an object by reference possible?)
  • 矩阵如何存储在内存中?(How are matrices stored in memory?)
  • 每个请求的Java新会话?(Java New Session For Each Request?)
  • css:浮动div中重叠的标题h1(css: overlapping headlines h1 in floated divs)
  • 无论图像如何,Caffe预测同一类(Caffe predicts same class regardless of image)
  • xcode语法颜色编码解释?(xcode syntax color coding explained?)
  • 在Access 2010 Runtime中使用Office 2000校对工具(Use Office 2000 proofing tools in Access 2010 Runtime)
  • 从单独的Web主机将图像传输到服务器上(Getting images onto server from separate web host)
  • 从旧版本复制文件并保留它们(旧/新版本)(Copy a file from old revision and keep both of them (old / new revision))
  • 西安哪有PLC可控制编程的培训
  • 在Entity Framework中选择基类(Select base class in Entity Framework)
  • 在Android中出现错误“数据集和渲染器应该不为null,并且应该具有相同数量的系列”(Error “Dataset and renderer should be not null and should have the same number of series” in Android)
  • 电脑二级VF有什么用
  • Datamapper Ruby如何添加Hook方法(Datamapper Ruby How to add Hook Method)
  • 金华英语角.
  • 手机软件如何制作
  • 用于Android webview中图像保存的上下文菜单(Context Menu for Image Saving in an Android webview)
  • 注意:未定义的偏移量:PHP(Notice: Undefined offset: PHP)
  • 如何读R中的大数据集[复制](How to read large dataset in R [duplicate])
  • Unity 5 Heighmap与地形宽度/地形长度的分辨率关系?(Unity 5 Heighmap Resolution relationship to terrain width / terrain length?)
  • 如何通知PipedOutputStream线程写入最后一个字节的PipedInputStream线程?(How to notify PipedInputStream thread that PipedOutputStream thread has written last byte?)
  • python的访问器方法有哪些
  • DeviceNetworkInformation:哪个是哪个?(DeviceNetworkInformation: Which is which?)
  • 在Ruby中对组合进行排序(Sorting a combination in Ruby)
  • 网站开发的流程?
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 条带格式类型格式模式编号无法正常工作(Stripes format type format pattern number not working properly)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。