Hello All,
I have one git issue which is as below
On My server i am using one repo for pull code is abc/myproject.git
Now i have fork one repo from abc/myproject.git to chirag/myproject.git
and now i want to use chirag/myproject.git instead of abc/myproject.git
for pull code on server
Is there any good way for do this ?
Thanks in advance
Chirag Shah
The 02/09/11, Chirag Shah wrote:
Hello All,
I have one git issue which is as below
On My server i am using one repo for pull code is abc/myproject.git
Now i have fork one repo from abc/myproject.git to chirag/myproject.git
and now i want to use chirag/myproject.git instead of abc/myproject.git
for pull code on server
Is there any good way for do this ?
You may use ‘git remote’ to change/add/del the declared remote
repository of your local git repository.
You may want to manually edit .git/config to fix your upstream branches
to the new remote repository.
–
Nicolas Sebrecht