0

Hi guys I have a remote repository cloned locally, Because my new changes have saved it to a different directory (workspaces in eclipse) I want to point git to the workspace directory rather than the other directory, how do I do this? Gitbox doesn't seem to have any options, and I can't see the .git folder

williamsandonz
  • 15,864
  • 23
  • 100
  • 186

1 Answers1

1

In your WORKSPACE do

git init

and then from where you pulled your copy initially. Do

git pull /path/to/your/workspace/project/dir
vincent mathew
  • 4,278
  • 3
  • 27
  • 34