From: Dongas <dongas86@gmail.com>
To: Russell Steicke <russellsteicke@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: A question about changing remote repo name
Date: Tue, 5 Jan 2010 12:30:03 +0800 [thread overview]
Message-ID: <60ce8d251001042030l75c5443gf173f127ad206df3@mail.gmail.com> (raw)
In-Reply-To: <c1b8b6671001041852w4740b7d6g4b8db1221c5dc744@mail.gmail.com>
2010/1/5 Russell Steicke <russellsteicke@gmail.com>:
> On Mon, Jan 4, 2010 at 2:45 PM, Dongas <dongas86@gmail.com> wrote:
>> So i need to change the remote name manually.
>>
>> I tried modifying the .git/config file locally but it didn't work.
>>
>> Could someone help tell how to do it?
>
> After editing .git/config, do this:
>
> $ mv .git/refs/remotes/OLDNAME .git/refs/remotes/NEWNAME
>
> and optionally:
>
> $ mv .git/logs/refs/remotes/OLDNAME .git/logs/refs/remotes/NEWNAME
>
> Remember to rename the remote in any tracking branches in .git/config,
> as well as the name in the [remote "OLDNAME"] section, and the name in
> any fetch and push lines. ie
>
> [remote "OLDNAME"]
> url = something
> fetch = +refs/heads/*:refs/remotes/OLDNAME/*
> [branch "master"]
> remote = OLDNAME
> merge = refs/heads/master
>
> Becomes
>
> [remote "NEWNAME"]
> url = something
> fetch = +refs/heads/*:refs/remotes/NEWNAME/*
> [branch "master"]
> remote = NEWNAME
> merge = refs/heads/master
Thanks a lot, Russell.
I followed you instruction but it seemed it needs more changes.
Below are the steps:
Original:
root@ubuntu:/work/git-repo/free_monkey# tree -a
.
|-- .git
| |-- HEAD
| |-- branches
| |-- config
| |-- description
| |-- hooks
| | |-- applypatch-msg.sample
| | |-- commit-msg.sample
| | |-- post-commit.sample
| | |-- post-receive.sample
| | |-- post-update.sample
| | |-- pre-applypatch.sample
| | |-- pre-commit.sample
| | |-- pre-rebase.sample
| | |-- prepare-commit-msg.sample
| | `-- update.sample
| |-- index
| |-- info
| | `-- exclude
| |-- logs
| | |-- HEAD
| | `-- refs
| | |-- heads
| | | `-- master
| | `-- remotes
| | `-- origin
| | `-- HEAD
| |-- objects
| | |-- info
| | `-- pack
| | |-- pack-f4beae76253ca8d36af31c42320462b5cf4940fc.idx
| | `-- pack-f4beae76253ca8d36af31c42320462b5cf4940fc.pack
| |-- packed-refs
| `-- refs
| |-- heads
| | `-- master
| |-- remotes
| | `-- origin
| | `-- HEAD
| `-- tags
`-- hello1
root@ubuntu:/work/git-repo/free_monkey# cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = git@192.168.1.116:free_monkey.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
root@ubuntu:/work/git-repo/free_monkey#
Execute your steps....
Becomes:
root@ubuntu:/work/git-repo/free_monkey# tree -a
.
|-- .git
| |-- HEAD
| |-- branches
| |-- config
| |-- description
| |-- hooks
| | |-- applypatch-msg.sample
| | |-- commit-msg.sample
| | |-- post-commit.sample
| | |-- post-receive.sample
| | |-- post-update.sample
| | |-- pre-applypatch.sample
| | |-- pre-commit.sample
| | |-- pre-rebase.sample
| | |-- prepare-commit-msg.sample
| | `-- update.sample
| |-- index
| |-- info
| | `-- exclude
| |-- logs
| | |-- HEAD
| | `-- refs
| | |-- heads
| | | `-- master
| | `-- remotes
| | `-- karmic
| | `-- HEAD
| |-- objects
| | |-- info
| | `-- pack
| | |-- pack-f4beae76253ca8d36af31c42320462b5cf4940fc.idx
| | `-- pack-f4beae76253ca8d36af31c42320462b5cf4940fc.pack
| |-- packed-refs
| `-- refs
| |-- heads
| | `-- master
| |-- remotes
| | `-- karmic
| | `-- HEAD
| `-- tags
`-- hello1
root@ubuntu:/work/git-repo/free_monkey# cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "karmic"]
url = git@192.168.1.116:free_monkey.git
fetch = +refs/heads/*:refs/remotes/karmic/*
[branch "master"]
remote = karmic
merge = refs/heads/master
But the result was:
root@ubuntu:/work/git-repo/free_monkey# git branch -a
* master
karmic/HEAD
origin/master
The 'origin/master' was still not changed.
I did a few more steps:
root@ubuntu:/work/git-repo/free_monkey# grep -wrin 'origin' .
./.git/packed-refs:2:abfae429bb4081043e84681e5ee94102085f87e0
refs/remotes/origin/master
./.git/refs/remotes/karmic/HEAD:1:ref: refs/remotes/origin/master
Change 'origin' to 'karmic' in above files.
Then,
root@ubuntu:/work/git-repo/free_monkey# git branch -a
* master
karmic/HEAD
karmic/master
The steps are a little complicated.
Do you know if there's a way to rename the remote on server side?
If there is, then everyone could just clone the project with a new
remote name rather than the defaul 'origin'.
Thanks
Regards
Dongas
next prev parent reply other threads:[~2010-01-05 4:30 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-04 6:45 A question about changing remote repo name Dongas
2010-01-04 20:09 ` Miklos Vajna
2010-01-05 1:53 ` Dongas
2010-01-05 1:57 ` Erik Faye-Lund
2010-01-05 2:25 ` Dongas
2010-01-05 2:52 ` Russell Steicke
2010-01-05 4:30 ` Dongas [this message]
2010-01-05 21:15 ` David Aguilar
2010-01-06 3:55 ` Dongas
2010-01-06 0:07 ` Russell Steicke
2010-01-06 0:27 ` Johannes Schindelin
2010-01-07 1:53 ` Russell Steicke
2010-01-06 1:02 ` Junio C Hamano
2010-01-06 3:58 ` Dongas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=60ce8d251001042030l75c5443gf173f127ad206df3@mail.gmail.com \
--to=dongas86@gmail.com \
--cc=git@vger.kernel.org \
--cc=russellsteicke@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).