I think I am stupid. I don't understand how Git works with the command lines so I am using Git Gui.

I got it install and the Gui can be launched successfully, but when I come to clone the file from the files which is shared by another programmer with me, I keep getting this error message,

Location C:/.... already exists.

on the Gui interface, it has two input fields to fill in only -

'Source Location' : https://me@github.com/remote-programmer/project-1.git (for instance)
'Target Directory' : C:/wamp/www/project-1-folder (for instance)

any visual guides available that I can avoid the command lines?

thanks!

link|improve this question

Which GUI are you using for git? – snarkyname77 Nov 17 '10 at 14:46
I really think you should learn to use git on the commandline, otherwise you're going to be constantly going against the grain and it'll be harder than it needs to be. – Skilldrick Nov 17 '10 at 14:46
I agree with @Skilldrick. Git GUI, in particular, is known for being a terrible interface for git. Invest a little time learning git from the command line (progit.org/book), it's really not very difficult to learn. – bdukes Nov 17 '10 at 14:51
1  
are you kidding - do I have to learn this from the whole book? I just want to clone and push files! :( – lauthiamkok Nov 17 '10 at 14:56
clone and push are chapter two. you can stop reading the book once you know what you need to know. – bdukes Nov 17 '10 at 15:31
show 3 more comments
feedback

1 Answer

up vote 2 down vote accepted

You need to clone into a new directory, that is, that "Target Directory" that you specify should not already exist.

link|improve this answer
Hi, I still don't get it. I have to create a new directory then clone the files into this directory - am I right? how can I clone if I don't create a directory first? thanks. – lauthiamkok Nov 17 '10 at 14:54
The clone operation creates the directory. You shouldn't manually create a directory, git will do it for you. – bdukes Nov 17 '10 at 14:56
got it! but even though I don't create the directory manually, I just browse location I want to target, I will have the same error... :( – lauthiamkok Nov 17 '10 at 14:59
2  
So, for me, I put something like git://github.com/jquery/jquery.git in the first box, and then put something like c:\projects\jquery in the second box, where projects exists but jquery does not (i.e. I navigate to an existing folder, then manually type the new folder name at the end after I've picked the existing folder). – bdukes Nov 17 '10 at 15:36
thank you. now i know how it works! – lauthiamkok Nov 17 '10 at 21:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.