log of files changed

Parth Malwankar parth.malwankar at gmail.com
Sun May 10 06:54:28 BST 2009


On Sun, 10 May 2009 11:07:42 +0530, knubee <knubee at gmail.com> wrote:

> the revision log does not include information about *which* files have  
> been
> modified, deleted, or added for a specific revision. assuming that the  
> person
> committing the revision did not specify this in the revision message, is  
> there a
> command that will get this information?
>
> thanks. k.
>
>
>

Hello k,

Maybe "log -v" is what you are looking for.

[foo-project]% bzr st
[foo-project]% bzr touch x.txt
[foo-project]% bzr ci -m "commited x"
Committing to: /home/parthm/tmp/foo-project/
added x.txt
Committed revision 2.
[foo-project]% bzr log
     2 parth.malwankar at gmail.com	2009-05-10
       commited x

     1 parth.malwankar at gmail.com	2009-04-09
       initial

[foo-project]% bzr log -v
     2 parth.malwankar at gmail.com	2009-05-10
       commited x
       A  x.txt

     1 parth.malwankar at gmail.com	2009-04-09
       initial
       A  rev.py

[foo-project]% ls
rev.py  x.txt
[foo-project]% bzr rm rev.py
deleted rev.py
[foo-project]% bzr ci -m "changes"
Committing to: /home/parthm/tmp/foo-project/
deleted rev.py
Committed revision 3.
[foo-project]% bzr log -v
     3 parth.malwankar at gmail.com	2009-05-10
       changes
       D  rev.py

     2 parth.malwankar at gmail.com	2009-05-10
       commited x
       A  x.txt

     1 parth.malwankar at gmail.com	2009-04-09
       initial
       A  rev.py

[foo-project]%

Regards,
Parth




More information about the bazaar mailing list