zer0stimulus
zer0stimulus

Reputation: 23606

subversion: How to retrieve current list of changelist names?

After creating several changelists via svn changelist, how do I view the names of all the changelists I've created?

Upvotes: 2

Views: 612

Answers (1)

borrible
borrible

Reputation: 17356

You can see your changelists using svn status. If you just want the names, grep for the lines beginning --- Changelist, e.g.:

svn status | grep "^\-\-\- Changelist"

Upvotes: 2

Related Questions