2008-03-05から1日間の記事一覧

Mercurial は空ディレクトリを管理対象に含めることができない

[~]% mkdir example && cd example [example]% hg init [example]% touch a.txt && mkdir b [example]% ls -F a.txt b/ [example]% hg status ? a.txt [example]% hg addremove adding a.txt [example]% hg status -A A a.txt [example]% hg ci -m "Initial …