dvcs - In Mercurial (Hg), what is a good way to list all files modified by me since revision 4822? -
I can do development work for 2 weeks before pushing one or two attributes to all production servers This is one Ruby on rail projects, many files can be modified.
 Then using Mercury as source control is a good method for me to list (or add) all the filenames, current versions and revisions 4822? (I do the first  hg push , I'm going to  hg out  and see which changes are 4823, so I will be different with 4822) 
(Update: This is to list only the files I modify, as opposed to the other 38 files modified by my teammates)
 Better yet ,  hg vdiff  is a good way to call automatically, so when it is brought to 
  check The list of filenames modified by Peter (or me) from 4822 will be  
  this will be
  hg vdiff -r 4822 [...] 4822 < / Code>  
 Maybe use  hg log  and some good one- Liner? 
  hg log - user peter - verbose | Grep files | Sed -e's / files: // '| Tr '' '\ n' | Sort | Use the  repository.  - rev  to limit the revision area will give all the files you modified since the beginning of the Unique 
Comments
Post a Comment