Hacker News new | ask | show | jobs
by shared4you 4570 days ago
If I understand these correctly, I can come up with this mapping between Hg <--> Git

    rebase <--> rebase
    histedit <--> rebase -i
    shelve <--> stash
    unbundle <--> ???
    purge <--> clean -x -d -f
    alias <--> [alias] section in gitconfig
    color <--> [color.*] section in gitconfig
    progress <--> ???
    pager <--> core.pager in gitconfig
1 comments

unbundle is probably closest to git reflog
Git has its own bundle/unbundle commands. AFAIK, the reflog simply has no equivalent in Hg.