- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Mercurial/ブランチ/cloneでブランチ へ行く。
- 1 (2013-03-19 (火) 05:45:19)
cloneでブランチ
ユースケース
リポジトリをcloneしてブランチを作る
hg clone project01 project01-new
ブランチで作業する
cd project01-new vi 1.txt hg ci -m 'update 1.txt (branch)'
元のリポジトリで作業する
cd ../project01 vi 1.txt hg ci -m 'update 1.txt (original)'
ブランチの作業を元のリポジトリにmergeする
hg pull ../project01-new # pullして hg glog # ログを確認して、 hg id -n # リビジョン番号を確認する(今回はブランチでのコミットをリビジョン番号3とする) hg merge 3 # リビジョン番号を指定してmergeを実行する
merge結果をコミットする
hg ci -m 'merge #3'