CentOS 7.9にバージョン管理ツールmercurialをインストールする

2021年12月27日

環境

OSバージョン
# cat /etc/redhat-release
CentOS Linux release 7.9.2009 (Core)
pythonバージョン
# python3.9 --version
Python 3.9.9
pipバージョン
# pip3.9 --version
pip 21.2.4 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)

インストールの方法
1.バージョン管理ツールmercurialをインストールします

# pip3.9 install mercurial
略
Installing collected packages: mercurial
Successfully installed mercurial-6.0

2.Mercurialバージョンを確認します

# hg --version
Mercurial - 分散構成管理ツール(バージョン 6.0)
(詳細は https://mercurial-scm.org を参照)

Copyright (C) 2005-2021 Olivia 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.

3.リポジトリを作成します

# hg init
ファイルを作成します
# touch user.csv
# hg add user.csv

コミットを行います
# hg commit -m “file create"
中止: ユーザ名が未指定です
('hg config –edit’ 実行でユーザ名を設定してください)

CentOS 7

Posted by arkgame