Authentication

Post here any ideas/problems/suggestions you have regarding CodeLite's Subversion (SVN) plugin
dmitigr
CodeLite Curious
Posts: 2
Joined: Wed Feb 10, 2010 1:24 pm
Genuine User: Yes
IDE Question: C++
Contact:

Authentication

Post by dmitigr »

Hello!

Codelite - nice IDE. Many thanks to authors!
How to quickly setup SVN username/password to interact with repository?
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Authentication

Post by eranif »

Hi,

Which version of codelite are you using?

codelite uses the command line tool 'svn' to interact with the repository.

When the SVN will need user/password -> you will get prompted

Eran
Make sure you have read the HOW TO POST thread
dmitigr
CodeLite Curious
Posts: 2
Joined: Wed Feb 10, 2010 1:24 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Authentication

Post by dmitigr »

Hello, Eran!

I use revision 3681 of Codelite on Ubuntu 9.10 x86_64.
I know svn(1). When I try to checkout workcopy from my repository, Codelite forward to me cerr from svn(1):
svn: Can't get username or password
Codelite doesnt promt me for username and password.
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Authentication

Post by eranif »

dmitigr wrote:Codelite doesnt promt me for username and password.
Sorry, I think that I did not test this scenario since I dont have a repository that requires 'login' on checkout
I will try and get one and check this screario

In the meanwhile, you could checkout the source manually, and once checked-out, you can work from within codelite as usual

Eran
Make sure you have read the HOW TO POST thread
jjvbhh
CodeLite Curious
Posts: 1
Joined: Tue Feb 16, 2010 1:27 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Authentication

Post by jjvbhh »

dmitigr wrote:Codelite doesnt promt me for username and password.
eranif wrote:In the meanwhile, you could checkout the source manually, and once checked-out, you can work from within codelite as usual
I have the same issue. And "work as usual" not only excluded checkout, but also update does not work, when the server requires authentication.
Using CodeLite 3712 on Kubuntu 7.10 for Embedded ucLinux on Coldfire
bobw
CodeLite Curious
Posts: 3
Joined: Tue Nov 02, 2010 7:25 am
Genuine User: Yes
IDE Question: C++
Contact:

Re: Authentication

Post by bobw »

:D

I got the same issue.
I think we should tell the SVN2 plugin our username & password. I found the page but I don't know how to set it.
The page is below.(Option -> SSH Client)
SSH.PNG
You do not have the required permissions to view the files attached to this post.
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Authentication

Post by eranif »

codelite prompts for user and password in the 'Svn' window - where you can insert the page.

Having a single page for the login is not ideal (think of multiple repositories)

Also:
Which OS?
Which codelite version?

Eran
Make sure you have read the HOW TO POST thread
alexk
CodeLite Curious
Posts: 3
Joined: Wed Jul 06, 2011 12:13 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Authentication

Post by alexk »

Solution: use svn on command line first. Type your username/password. They will be saved by svn. Now copy configuration to codelite svn by

Code: Select all

cp -r  ~/.subversion/* ~/.codelite/subversion/
You should be able to use svn in codelite now.
Post Reply