Reputation: 66480
I have a brach (actually a folder with a copy) in /braches/me that I have checkout into /home/me/project/branch how can I check all commits I've done to that branch. I've try to svn log .
but it show me log from other users, but only I commit changes to that branch.
So how can I display log for the branch (directory)?
Upvotes: 2
Views: 910
Reputation: 107030
You have your code changes only in /branches/me
? You can do this:
$ svn log --stop-on-copy -v $REPO/branches/me
This will show you all changes on /branches/me
and will contain other people's commits on /branches/me
, but I assume you're the only one using this particular branch. The --stop-on-copy
will proven the log from going down the branch to where it was copied from trunk
and down trunk
.
Upvotes: 3