Game Development Community

how do i clone the Project Manager after i forked it

by hbomega · in Torque 3D Beginner · 08/03/2014 (7:16 am) · 14 replies

Everytime i try to clone the Project Manager with gitbash i get a permission denied access not granted they add my ip address to some list then tell me to check my access or permision rights

#1
08/04/2014 (12:26 am)
Can you show the exact git command you are using?
#2
08/04/2014 (1:56 pm)
I don't mean to sound patronising but have you successfully cloned other repositories? I ask because you might have had to set up SSH keys, for example, or this time you might be using a different protocol (git@github.com versus git://github.com for example).
#3
08/04/2014 (10:06 pm)
i use git clone git@github.com: yes i have successfully cloned torque2D
#4
08/05/2014 (2:37 pm)
Could you link us to your fork? I'll see if I can clone a read-only version.

EDIT: I found it. I was able to successfully clone by doing this:
git clone git@github.com:HBOMEGA/Torque3D-ProjectManager.git
#5
08/06/2014 (12:16 am)
when i try "git clone git@github.com:HBOMEGA/Torque3D-ProjectManager.git /d/Torque/Torque3D/Torque3DPM"

i get an error "No address associated with name"
" fatal: Could not read from a remote repository"
"Please make sure you have the correct access rights and your repository exists"
#6
08/06/2014 (6:52 am)
Perhaps try git "clone git@github.com:HBOMEGA/Torque3D-ProjectManager.git d:/Torque/Torque3D/Torque3DPM"

Or perhaps look at Git's documentation....
#7
08/06/2014 (11:15 am)
when i try "git clone git@github.com:HBOMEGA/Torque3D-ProjectManager.git d:/Torque/Torque3D/Torque3DPM"

i get errors: " permission denied (publickey)"
" fatal: could not read from remote repository"
" Please make sure you have the correct access rights and the repository exist"

it also adds the RSA host key for my ip address to some host list
#8
08/06/2014 (11:47 am)
git clone https://github.com/HBOMEGA/Torque3D-ProjectManager d:/Torque/Torque3D/Torque3DPM
I just used this exact command line and it worked.
#9
08/06/2014 (2:48 pm)
Publickey error suggests you've added an SSH key to your github account, but it's not being found on your local computer. What's in your ~/.ssh directory?
#10
08/06/2014 (3:36 pm)
I got that public key error on my Win7 box at work - but not at home. The last one I posted acted correctly even from work.
#11
08/08/2014 (8:51 am)
git clone https://github.com/HBOMEGA/Torque3D-ProjectManager d:/Torque/Torque3D/Torque3DPM

works great thanks Richard and Daniel
#12
08/08/2014 (9:43 am)
i have got a new problem im having trouble building the Project Manager i cloned. when i reach step 3

1. Open a Visual Studio Command Prompt (2010).
2. Go to the Torque3D-ProjectManager/buildFiles/VisualStudio directory.
3. Type qmake and press return. This will create a Visual Studio project file

when i navigate to my Project manager build files "d:/Torque/Torque3D/Torque3DPM/buildFiles\VisualStudio" an type qmake i get an error "d:/Torque/Torque3D/Torque3DPM/buildFiles\VisualStudio is not recognized as an internal or external command, operable command or batch file
#13
08/08/2014 (10:15 am)
i believe i might have the wrong qt installed
#14
08/08/2014 (1:59 pm)
i downloaded the correct Qt 4.8.6
installed it and added the path to my enviroment variable
and build the Qt library like they said (even though it looks like it was already there. now after i open visual studio command prompt(2010) and change the directory to the project manager build files in my case
"d:/Torque/Torque3D/Torque3DPM/buildFiles\VisualStudio" i then type qmake and this is the results

"Warning: unable to generate output for d:/Torque/Torque3D/Torque3DPM/buildFiles\VisualStudio//Makefile.Debug [Template vcapp]"

and errors
" Warning: unable to generate output for d:/Torque/Torque3D/Torque3DPM/buildFiles\VisualStudio//Makefile.Release [Template vcapp]

any info on what im doing wrong will be helpful and greatly appreciated THANKS