perforce - P4, How to find changelist user from a given changelist? -
anybody knows how change list user given changelist(say, #12345)?
p4 describe -s #12345
give output this:
change #12345 user@user_clientspec on 2010/07/26 10:26:29
affected files...
.......
is there command give user name. not client spec shows user@user_clientspec.
appreciate help.
thanks, tom
p4 change -o 12345 | grep ^user:
or, if you're on recent version of 'p4' command line:
p4 -f "%user%" -ztag change -o 12345
Comments
Post a Comment