vote up 1 vote down star

ppl,

I have put my project on github at some location git@github.com:myname/oldrep.git. Now I want to push all my code to a new repository at some new location git@github.com:newname/newrep.git...

so I used the command

git remote add origin git@github.com:myname/oldrep.git

but I am receiving this

fatal: remote origin already exists.

Please help me

flag

75% accept rate
Give the output of the command $> git remote -v show – sykora Aug 3 at 11:50

3 Answers

vote up 4 vote down check

You are getting this error because "origin" is not available. "origin" is a convention not part of the command. "origin" is the local name of the remote repository.

For example you could also write:

git remote add myorigin git@github.com:myname/oldrep.git
git remote add testtest git@github.com:myname/oldrep.git

See the manual:

http://www.kernel.org/pub/software/scm/git/docs/git-remote.html

link|flag
vote up 0 vote down

You can simply edit your config file in a text editor.

In the ~/.gitconfig you need to put something like the following:

[user]
        name  = Uzumaki Naruto
        email = myname@example.com

[github]
        user = myname
        token = ff44ff8da195fee471eed6543b53f1ff

In the oldrep/.git/config file (in the config file of your repository):

[remote "github"]
        url = git@github.com:myname/oldrep.git
        push  = +refs/heads/*:refs/heads/*
        push  = +refs/tags/*:refs/tags/*

If there is remote section in your repository's config file, and url matches, you need only to add push configuration. If you use public url for fetching, you can put url for pushing as 'pushurl' (warning: this requires just released git version 1.6.4).

link|flag
vote up 0 vote down

You could also change the repository name you wish to push to in the REPOHOME/.git/config file

(where REPOHOME is the path to your local clone of the repository).

link|flag

Your Answer

Get an OpenID
or

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