I run hg pull
which added new changes to my repository. Before updating my working directory with the new changes i would like to see these new files/changes. I believe in SVN i used svn st -u
but how is it done in Mercurial?
相关问题
- Mercurial compared to private branches in SVN
- Using Subversion and SourceSafe at the same time?
- How to abandon all Mercurial changes that haven
- subversion merge - “has different repository root
- Windows permissions on a directory: Mercurial - hg
相关文章
- Mercurial Commit Charts / Graphs [closed]
- What is the tortoisehg gui equivalent of doing “hg
- How to use Mercurial from Visual Studio 2010?
- SSIS solution on GIT?
- Is it possible to do a “destroy history” in TFS?
- Is there a version control system abstraction for
- Get Android library module version number from ins
- Sprockets::CircularDependencyError application.js
Before you even pull you can use:
to see a summary of changes or
to see the actual deltas.
After pulling (but before updating!) you can do:
to see a list of the changed files, or
to see a summary of the changes, or
to see the combined diff.
(After pulling the changes via
hg pull
) you can runhg status --rev tip
to show an output similar tosvn st -u
.There is also
hg incoming
(aliashg in
; additionallyhg outgoing
/hg out
) which can be used before pulling which will show you the revisions which will be pulled. At times this can be useful.