1

I have a git repository which is present on Github. I have the same repository on a remote server with same file structure. Things happened and on my remote server the .git directory was deleted.

Is there a way I can change my repository on the remote server to track the one on Github again with the repository on Github as origin? After doing it, I want the repository on remote server behave exactly like a clone of the one on Github.

I can not remove the repository from remote server and clone it from Github again.

3 Answers 3

2

Yes, use on your remote server:

git remote set-url origin <your github remote url>
1

you can do:

git init
git remote add origin <remote-url>
git pull
  1. Since . git folder is deleted, git init will initialise the git repo again in the remote server
  2. Adding origin would help you track the local repo with the one in github
  3. Once origin is added, changes are pulled from github.
6
  • 1
    since .git folder got removed, 'git init' would initialise the git repo and then second command can be issued to track the origin
    – xxxxx
    Oct 17, 2017 at 16:15
  • 1
    I didn't understand that. I understood that the remote repo he is tracking to got its .git folder deleted. I removed my comment.
    – lilezek
    Oct 17, 2017 at 16:18
  • 1
    I updated my question a little bit. I want the repo on remote server to behave like a clone of the Github repo. The commands in this answer will simply add a remote with the name of origin which points to Github. How would I pull in changes and branch information from Github?
    – Waseem
    Oct 17, 2017 at 16:27
  • 1
    After adding 'remote', do 'git pull'. This will pull the changes from the github to repo in remote server.
    – xxxxx
    Oct 17, 2017 at 16:30
  • 1
    maybe you can edit your answer to include the explanation you gave in the comments
    – msrd0
    Oct 17, 2017 at 22:44
1

This is how I was able to do it. It involves creating a temporary master branch on remote server and then replacing it with origin/master

git init
git remote add origin <url/to/origin>
git fetch -a

At this point you'll have a bunch of untracked files. We'll now make a commit and create a master branch on remote server which will be different from one on Github.

git add .

You probably don't want to stage all the files to the commit and keep them untracked instead. Use git reset -- </path/to/file/to/unstage> to unstage those files or directories.

git status # Check the files that you're going to commit.
git commit # Create a temporary master branch for now.

Now rename the master branch and create another master that tracks origin/master

git branch -m master temp-master # Rename the just created master
git branch --track master origin/master # Track origin/master in master

Now remove the temp-master

git checkout master
git branch -d temp-master # You might need to use -D

Check that everything is correct

git log

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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