Reputation: 23606
After creating several changelists via svn changelist
, how do I view the names of all the changelists I've created?
Upvotes: 2
Views: 612
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