0

Possible Duplicate:
Can I store the .git folder outside the files I want tracked?

My colleague has a zip archive of our remote git repository.

So instead of having to checkout all the files again how can we point his directory to the repository? We are using tortoise git.

Community
  • 1
  • 1
williamsandonz
  • 15,864
  • 23
  • 100
  • 186

1 Answers1

0

Unpak his zip archive. Now you have /the_app

Now remote add the remote repository.

Now you can make changes and push them to the remote.
Or make changes on the remote and fetch them in.

Michael Durrant
  • 93,410
  • 97
  • 333
  • 497