#11960 closed defect (bug) (fixed)
svn:ignore set to .swp files on multiple directories
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 3.0 | Priority: | normal |
Severity: | normal | Version: | 3.0 |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
I was not able to properly find out when that happened but some SVN:IGNORE properties were set to local .swp (I assume swap file, temporary files) copies of files.
It looks to me that this has been done in error on a local developers machine and those shoudl be removed to tidy things up.
Attachments (1)
Change History (6)
#2
@
15 years ago
I've attached a patch that hopefully removes the svn:ignore property from the wp-includes and wp-admin directories.
I'm not sure if a patch/diff is capable of doing this though.
If the patch doesn't work, try these commands:
svn propdel svn:ignore wp-admin svn propdel svn:ignore wp-includes
#4
follow-up:
↓ 5
@
15 years ago
wpmuguru: Not sure what client you're using, but with TortoiseSVN on windows its pretty simple. Right click folder -> Tortoise -> Properties -> Select properties and click remove.
#5
in reply to:
↑ 4
@
15 years ago
Replying to dd32:
wpmuguru: Not sure what client you're using, but with TortoiseSVN on windows its pretty simple. Right click folder -> Tortoise -> Properties -> Select properties and click remove.
I use command line svn for linux. I can remove them before committing using svn revert .*.swp
(in whatever folder has them. The ones hakre was referring to I had committed before I knew I had to watch for them.
Thanks for cleaning that up :)
Those are my fault/part of my learning curve :/
I've tried
svn propdel svn:ignore .file.ext.swp
and get a message that the file(s) aren't under source control.