在git中,有一個命令'git bundle',它將git存儲庫捆綁到一個大文件中。 是否有'hg'的等效命令?hg git命令包
0
A
回答
4
Hg支持相同的命令。以下是對它的幫助:
U:\>hg help bundle hg bundle [-f] [-t TYPE] [-a] [-r REV]... [--base REV]... FILE [DEST] create a changegroup file Generate a compressed changegroup file collecting changesets not known to be in another repository. If you omit the destination repository, then hg assumes the destination will have all the nodes you specify with --base parameters. To create a bundle containing all changesets, use -a/--all (or --base null). You can change compression method with the -t/--type option. The available compression methods are: none, bzip2, and gzip (by default, bundles are compressed using bzip2). The bundle file can then be transferred using conventional means and applied to another repository with the unbundle or pull command. This is useful when direct push and pull are not available or when exporting an entire repository is undesirable. Applying bundles preserves all changeset contents including permissions, copy/rename information, and revision history. options: -f --force run even when the destination is unrelated -r --rev a changeset intended to be added to the destination -b --branch a specific branch you would like to bundle --base a base changeset assumed to be available at the destination -a --all bundle all changesets in the repository -t --type bundle compression type to use (default: bzip2) -e --ssh specify ssh command to use --remotecmd specify hg command to run on the remote side
反向操作的命令是hg unbundle。
+1
以下是完整文檔中的鏈接。 http://www.selenic.com/mercurial/hg.1.html#bundle – 2010-04-19 20:15:59
+1
是的,它在Mercurial中有相同的名字...這不是巧合,因爲Git從Mercurial獲得了它的包命令:-) – 2010-05-26 11:00:49
相關問題
- 1. 從哪裏可以找到從git命令到hg命令的翻譯?
- 2. hg:未知命令'qimportbz'
- 3. hg命令未知錯誤
- 4. 是否有Git命令導入hg存儲庫
- 5. git命令行
- 6. Git commit命令
- 7. 的Git命令
- 8. hg命令在hg獲取之前查看變更集
- 9. 已安裝hg shelve,但hg:未知命令'unshelve'
- 10. 在Hg擴展中重載拉命令
- 11. Mercurial hg serve命令的問題
- 12. Windows TeamCity中的HG命令路徑
- 13. 如何從windows執行hg clone命令
- 14. GIT - '〜/ repo.git /'不是git命令
- 15. git-svn不是git命令?
- 16. git submodule from Hg repo?
- 17. Git repo as Hg subrepo
- 18. Git推送命令
- 19. GIT命令問題
- 20. Subversion的Git命令
- 21. 運行git命令
- 22. GIT最短命令
- 23. Git命令錯誤
- 24. Git命令一覽
- 25. 使用Git命令
- 26. git-remote-hg在git中使用「--insecure」克隆hg :: someurl
- 27. Git命令 - 不識別ls命令
- 28. GIT commit命令相當於SVN命令
- 29. 如何在git命令前加一個包裝。 git clone
- 30. Git flow命令錯誤:'flow'不是git命令
在你問這個問題之前你做過什麼研究?我在問這個,因爲我很困惑你爲什麼在命名相同的時候沒有在Mercurial中找到命令?如果您可以編寫[email protected]並指出我們需要改進文檔的位置,這將對我們有所幫助。謝謝。 – 2010-05-26 10:59:31