sandy
sandy

Reputation:

How to see the files present in changelist using command line

I created one changelist. I moved 2 files to it. If i give svn status command, it will show the change list and the files present in it. after doing the commit. If i try to give the svn status. I am not see the changelist and the files present in it. is it not possible to see the changelist and files present in it after committing to the repositary?. Is there any command to see the change list created by ourself apart from svn status command?

Upvotes: 0

Views: 1702

Answers (2)

William Leara
William Leara

Reputation: 10697

I hope I'm understanding your question: perhaps what you are experiencing is the fact that, by default, when you svn commit, changelist assignments are removed from the files. If you want to svn commit and preserve your changelist, you have to use the --keep-changelists switch. Example: (where changelist is called "test")

svn commit --changelist test --keep-changelists

Upvotes: 1

Andrew
Andrew

Reputation: 1873

It looks like you're looking for:

svn diff --summarize -r0:100 

You may also want to take a look at:

svn log

depending on what you want to accomplish.

Upvotes: 1

Related Questions