Import a Git project into Aptana with username and SSH password

I am trying to set up a git repository for some source code, this is the first time I have used git - but I myself have become familiar with all the concepts and basic principles of the command line that should get me started now.

I am trying to get Aptana Studio 3 to clone a newly created git Repo on my development server. I cannot figure out how to pass the username and password for SSH connection. EGit for Eclipse allows you to specify a username and password and looks much more advanced than the implementation of Aptana git, which only requests URIs and Paths. Which would be @: / path / to / git

I also found that for some reason I could not install eGit in Aptana. It probably does not have some dependencies included in Eclipse, but not Aptana (Mylyn has problems with problems).

I understand that I can use keys, but now it’s only about using a username and password right now, and I'm not interested in setting up access with a key.

So, is it possible to use the Aptana Studio 3 git implementation with username and password for SSH without having to configure RSA keys for authentication? If there is no Aptana Native in the implementation, is there a way to install another git plugin and make it work.

Thank you for your time. -Charles

+5
source share
1

eclipse/Aptana, "" git SSH, , , .

git, uri .gitmodules, : ssh://myuser@server/paht/to/repo.git. , .gitmodules , , .gitmodules?

:

1) URL- .gitmodules ssh://server/paht/to/repo.git. 2) ~/.ssh/config :

Host server
  HostName <ip-of-the-server>
  User myuser

, git ( openSSH, ) ssh, "server" ~/.ssh/config, .

, "" Aptana , , RSA.

+1

All Articles