zoukankan      html  css  js  c++  java
  • Ubuntu20.04下Mercurial的安装与配置

    简介

    官网地址:https://www.mercurial-scm.org/

    Mercurial是一个免费的分布式的跨平台源码控制管理工具。它能有效地处理任何规模的项目,同时提供了一个简单和直观的界面。Mercuial是用Python写成的。

    安装

    官网地址:https://www.mercurial-scm.org/downloads
    其他平台的安装教程在此处也可以找的到。

    Ubuntu20.04下可以直接用命令直接安装,
    $ sudo apt install mercurial

    安装完成用下面的命令测试

    $ hg version
    Mercurial Distributed SCM (version 5.3.1)
    (see https://mercurial-scm.org for more information)
    
    Copyright (C) 2005-2020 Matt Mackall and others
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    

    因为我安装这个工具主要是为了阅读OpenJDK源码,所以并没有按照官方提供的方式下载安装最新的版本

    配置

    基本操作

  • 相关阅读:
    SCUT
    模板
    重链剖分
    树的重心
    SCUT
    SCUT
    SCUT
    SCUT
    SCUT
    SCUT
  • 原文地址:https://www.cnblogs.com/dhf327/p/14184880.html
Copyright © 2011-2022 走看看