0

The main question is how do I clear the command prompts memory or cache.

I ran this on cmd.exe

svn info <URL>

Which prompted me a for a username and password which I entered.

I then logged off and logged back in immediately and I entered that same command and I wasn't asked for a username and password. I want to clear this to test something without restarting my server!

How can I do this?

Abs
  • 1,559
  • 5
  • 19
  • 32
  • 3
    Are you sure you aren't asking how to clear subversion's cache? The command prompt didn't cache anything. – David Schwartz Nov 13 '12 at 10:24
  • @DavidSchwartz that is a good point, I might be asking that. I just assumed it was cmd that stored the username/password. Let me try. – Abs Nov 13 '12 at 10:25
  • @DavidSchwartz You are right, just deleted the Subversion/auth file. Is it worth adding and answer to this question? – Abs Nov 13 '12 at 10:31

1 Answers1

3

It's subversion that's caching, not the command line. Just remove subversion's auth file.

David Schwartz
  • 31,449
  • 2
  • 55
  • 84
  • Thank you David that worked. For windows users check `AppData\Roaming\Subversion\auth` for Linux I guess its `~/svn/auth` – Abs Nov 13 '12 at 10:37