python:mercurial

文書の過去の版を表示しています。


Mercurial - 分散型バージョン管理システム

ここでは Python と pip の導入が完了していることを前提とする。

Python のインストール
easy_install、setuptools、pip - パッケージ管理

CentOS の場合は gcc と python-devel をインストールしておく。

$ sudo yum install gcc python-devel

pip によるインストール。

$ sudo pip install mercurial
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip install --user` instead.
Collecting mercurial
  Downloading https://files.pythonhosted.org/packages/79/54/ccc37f1f55b91d48ed1de38ffbb81e32697dc69accea017c8faad21360bf/mercurial-5.3.2.tar.gz (7.5MB)
     |████████████████████████████████| 7.5MB 1.2MB/s
Installing collected packages: mercurial
  Running setup.py install for mercurial ... done
Successfully installed mercurial-5.3.2

dnf によるインストール。

$ sudo dnf install mercurial
メタデータの期限切れの最終確認: 0:00:36 時間前の 2020年04月27日 00時04分18秒 に実施しました。
依存関係が解決しました。
=====================================================================================
 Package             Architecture     Version                 Repository        Size
=====================================================================================
インストール:
 mercurial           x86_64           4.9-2.fc31              fedora           4.8 M

トランザクションの概要
=====================================================================================
インストール  1 パッケージ

ダウンロードサイズの合計: 4.8 M
インストール済みのサイズ: 24 M
これでよろしいですか? [y/N]: y
パッケージのダウンロード:
mercurial-4.9-2.fc31.x86_64.rpm                      1.3 MB/s | 4.8 MB     00:03
-------------------------------------------------------------------------------------
合計                                                 1.1 MB/s | 4.8 MB     00:04
トランザクションの確認を実行中
トランザクションの確認に成功しました。
トランザクションのテストを実行中
トランザクションのテストに成功しました。
トランザクションを実行中
  準備             :                                                             1/1
  インストール中   : mercurial-4.9-2.fc31.x86_64                                 1/1
  scriptletの実行中: mercurial-4.9-2.fc31.x86_64                                 1/1
  検証             : mercurial-4.9-2.fc31.x86_64                                 1/1

インストール済み:
  mercurial-4.9-2.fc31.x86_64

完了しました!
$ hg version
Mercurial - 分散構成管理ツール(バージョン 5.3.2)
(詳細は https://mercurial-scm.org を参照)

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.
vi ~/.hgrc
[ui]
username = Tomoyan <tomoyan@example.com>

既存のディレクトリでリポジトリを作成する。

$ mkdir repos
$ cd repos
$ hg init

新たにリポジトリのディレクトリを作成する。

$ hg init repos
$ vi .hgignore
# Shell 形式パターンマッチ
syntax: glob
 
*.pyc
# 正規表現パターンマッチ
syntax: regexp
 
^\.git/
$ hg add file.txt
$ hg status
A file.txt
$ hg commit
$ hg diff
$ hg revert file.txt
$ hg rollback
$ hg log

ssh経由でリモートリポジトリをローカルに複製する。

$ hg clone ssh://user@server:port//var/hg/hoge/fuga my-fuga
$ hg pull
$ hg update

作業領域の変更を破棄する場合

$ hg update -C
$ hg push ssh://user@server:port//var/hg/hoge/fuga

※push先にリポジトリが存在している必要がある。存在しない場合は作成するかcloneしておくこと。

.hg/hgrc に以下の記載があるなら省略できる。

[paths]
default = ssh://user@server:port//var/hg/hoge/fuga
$ hg push


サーバーでリポジトリを作成する場合。

$ hg init fuga


クライアントからサーバーへクローンする場合。

$ hg clone . ssh://user@server:port//var/hg/hoge/fuga

convert エクステンションを有効化する。

$ vi ~/.hgrc
~/.hgrc
[extensions]
convert =

git を Mercurial へ変換

$ hg convert [repository] [new-repository]
変換先リポジトリ new-repository の初期化中
変換元リポジトリの走査中...
並べ替え中...
変換中...
9625 Initial structure
〜省略〜
$ cd new-repository
$ hg update

hg convert で svn を Mercurial に変換する。

$ hg convert _wxHexEditor-v0.23-src_svn _wxHexEditor-v0.23-src_hg
変換先リポジトリ _wxHexEditor-v0.23-src_hg の初期化中
変換元リポジトリの走査中...
並べ替え中...
変換中...
$ cd _wxHexEditor-v0.23-src_hg
$ hg update

Subversion のリポジトリがリモートにしかない場合

git-svn を使って svn を一度 git に変換する。

$ sudo dnf install git-svn
$ git svn clone https://svn.code.sf.net/p/wxhexeditor/code/trunk wxHexEditor-v0.23-src_git
Initialized empty Git repository in /home/tomoyan/wxHexEditor-v0.23-src_git/.git/
	A	testfile
	A	HexEditorCtrl/wx_pch.h
	A	HexEditorCtrl/HexEditorCtrl.cpp
〜省略〜
W: -empty_dir: contrib/wxhexeditor_0.22-1.dsc
r464 = 9d76f35dbaf4053a5b90771b65147d5a940f0fca (refs/remotes/git-svn)
Checked out HEAD:
  https://svn.code.sf.net/p/wxhexeditor/code/trunk r464
creating empty directory: mhash/mhash-0.9.9/lib

hg convert で git を Mercurial に変換する。

$ hg convert wxHexEditor-v0.23-src_git wxHexEditor-v0.23-src_hg
変換先リポジトリ wxHexEditor-v0.23-src_hg の初期化中
変換元リポジトリの走査中...
並べ替え中...
変換中...
435 Reset svn
434 DataInterpreter Added.
433 DataInterpreter big endian and unsigned swithces fixed.
〜省略〜
2 Last touches for wxMSW.                                                                           
1 Fixed assertions due ~wxHexCtrl() cleanup code.                                                   
0 Updated to v0.23                                                                                  
ブックマークの更新中
$ cd wxHexEditor-v0.23-src_hg
$ hg update

hgrc の所有者やグループが自分ではない時に発生する。
表示される所有者やグループが本当に信頼できるものであれば、~/.hgrc に以下の記述を追加する。

$ vi ~/.hgrc
~/.hgrc
[trusted]
users = root
groups = root

日本語では、gcc: エラー: /usr/lib/rpm/redhat/redhat-hardened-cc1: そのようなファイルやディレクトリはありません
英語では、g++: error: /usr/lib/rpm/redhat/redhat-hardened-cc1: No such file or directory が発生する。

redhat-rpm-config パッケージをインストールしてから行う。

$ sudo dnf install redhat-rpm-config
  • python/mercurial.1587914040.txt.gz
  • 最終更新: 2020/04/27 00:14
  • by ともやん