What the title says
I tried svn pd
but didn't know the proper syntax to use it.
>svn pd svn:keywords Id
svn: warning: 'Id' is not under version control
Update:
I want this across the entire current directory, not just a single file, so I tried:
>svn propdel svn:keywords "Id" . -R
svn: warning: 'Id' is not under version control
property 'svn:keywords' deleted (recursively) from '.'.
My files still have $Id$
expanded.
Update2:
To be more clear, I'm not committing anything to the svn, just checking it out and updating from time to time.
I noticed when I fetch it using git-svn, all the $Id$
tags are preserved (not expanded), I want svn to do the same thing.
So now I ran this command:
>svn propdel svn:keywords . -R
What should I do now to get the latest files without expanding $Id$? I suppose what I want is to tell svn to pull all files again ...
I tried:
>svn revert . -R
but it didn't seem to do what I want.