标签:log 变更 分支 commit pull 提交 branch -- stat
hg命令跟git命令大同小异
hg version 查看hg版本
hg clone url 克隆代码仓库
hg branch newBranch 创建分支
hg update otherBranch 切换到其他分支
hg update -r versionNum 切换到指定版本号
hg pull 拉取代码
hg commit 提交代码
hg push 推送代码
hg log -v 查看提交记录
hg log --debug 查看提交记录(更详细)
hg status 查看变更
hg diff 查看异同
hg revert 还原更改
hg merge 合并代码
标签:log 变更 分支 commit pull 提交 branch -- stat
原文地址:https://www.cnblogs.com/ganmy/p/10368363.html