Questions tagged [svn-propset]

Questions regarding SVN propset operations.

In the context of the Apache SVN Version Control System, propset is an operation that assigns values to properties on files, directories, or revisions.

33 questions
21
votes
5 answers

Automatically add svn:needs-lock

Hi I was wondering if there is a way for the SVN server to automatically assign the svn:needs-lock property on any file that is binary and not textual. We have a rather small developers team but resting on everyone to remember to set this property…
Savvas Dalkitsis
  • 11,476
  • 16
  • 65
  • 104
19
votes
1 answer

How to configure svn ignore settings with git svn?

I know I can configure folders and files for being ignored by subversion using the following commands: svn propset svn:ignore build . // Ignores the build folder. svn propedit svn:ignore . // Opens an editor. Though, I use git svn to checkout a…
JJD
  • 50,076
  • 60
  • 203
  • 339
14
votes
1 answer

tortoisesvn edit log message not displaying

I've read all the articles about how you can edit log messages using TortoiseSVN. I've been able to do this just fine. However, I wanted to see if the changes I made on the server could be seen locally, and the changes I make locally can be seen on…
Soumak
  • 141
  • 1
  • 5
10
votes
4 answers

How to use subversion's propset against a URL?

Is it possible to manipulate a subversion property such as svn:externals via a URL only? (i.e. without having a working copy.) I'd like a script that pins svn:externals to a particular revision given a subversion URL, but this seems to be…
mjs
  • 63,493
  • 27
  • 91
  • 122
8
votes
3 answers

Repairing git-svn repository after historical Subversion revision changed

I use git-svn to keep a clone of a shared Subversion repository. Recently someone edited the commit message of a revision (a la this SO question) after I had git svn fetched that revision. How can I correct my Git clone to have the correct commit…
me_and
  • 15,158
  • 7
  • 59
  • 96
5
votes
3 answers

How do I create an ignore list of several items in SVN?

I'm creating an ignore list on a Windows machine using the following command line: svn propset svn:ignore "bin" Fardis.Test The directory tree structure is: \src\ \src\Fardis.Test\ \src\Fardis.Test\bin\ \src\Fardis.Test\obj\ I'm running that…
Afshar Mohebi
  • 10,479
  • 17
  • 82
  • 126
3
votes
2 answers

Set svn keywords recursively on *.cpp and *.h files

I need to set from command line (cmd or powershell) some svn keywords recursively on ALL .h and .cpp files. How can I do it? I tried svn propset svn:keywords "My keywords" -R *.cpp *.h without success, it says me: svn: warning: '.cpp' is not under…
Stefano
  • 3,213
  • 9
  • 60
  • 101
3
votes
1 answer

Subversion not ignoring my directory after setting property of ignore

I have a directory in my application called /admin/debug/output that contains a directory and a bunch of JavaScript files. I want to ignore them completely from appearing when doing an svn st before commiting code. I used the propset commant like…
crmpicco
  • 16,605
  • 26
  • 134
  • 210
2
votes
0 answers

Set SVN bugtraq propset properties for all current and new repository directories and file commits?

We've got a SubVersion repository containing existing projects, but we frequently add new projects and internal-use tools to it as well. I've set the bugtraq prop-set properties on files and directories (including the root svn repository folder),…
Andrew
  • 12,991
  • 15
  • 55
  • 85
2
votes
2 answers

revert recursive svn propset of svn:ignore

I accidentally ran svn propset svn:ignore "..." . -R in the root directory of a huge subversion repository. Before, many folders had their individual svn:ignore properties. I would like to restore the state before running this "svn propset"…
skew41
  • 41
  • 2
2
votes
1 answer

Overriding default automatic SVN properties with svn:auto-props

Is it possible to somehow override default algorithm for assigning SVN properties using the svn:auto-props? (Obviously only for those that do use svn:auto-props...) In particular how do I assure that svn:executable is not set based on corresponding…
Adam Badura
  • 5,069
  • 1
  • 35
  • 70
2
votes
1 answer

How to exclude file extensions in svn root directory using svn:global-ignores command line

I'm looking for options to global ignore files and directories, I'm not interested on doing this per-directory, so svn:ignore is not an option here, but I can't find the correct syntax for svn:global-ignore rather for listing what's in the config…
Jonathan Escobedo
  • 3,977
  • 12
  • 69
  • 90
2
votes
1 answer

Is a svn propset still set on a svn export with --force flag option?

Is a svn propset still set on a svn export? or does the export also remove any propset settings? To my understanding the export with the --force flag removes all the .svn directories but do the propset settings still apply? Is there an option to…
Phill Pafford
  • 83,471
  • 91
  • 263
  • 383
2
votes
2 answers

Can I change or add a property for my release number to the svn repository?

Svn is generating automatic numbers for revisions. RevNo Date Desc 1 2012-01-01 Initial directories are created 2 2012-01-02 Something added 3 2012-03-10 something changed 4 2012-03-18 Ready for Release_1.0 and…
uzay95
  • 16,052
  • 31
  • 116
  • 182
1
vote
0 answers

SVN propset invoking in SVN hook doesn't work

How do I invoke svn propset in an svn hook? My svn repo allows change wrong svn:log properties. It is implemented with default pre-revprop-change template. I want to modify default pre-revprop-change template and saving old history in other revision…
qwazer
  • 7,174
  • 7
  • 44
  • 69
1
2 3