While trying to setup a synchronization for a bitbucket repo on my local server, I am getting the error not a git repo. Below is the command which I fired:
$ git --git-dir=~/gitRepo/my_repo.git remote add origin git@bitbucket.org:username/my_repo.git
fatal: Not a git repository: '~/gitRepo/my_repo.git'
Even I tried to init the repo (as previously I was not doing that) but still same error I got. Below are the steps which I followed after looking tutorials on Git (as I am new to Git so sorry if I ask very basic question)
$ git init
Initialized empty Git repository in ~/gitRepo/my_repo/.git/
$ git --git-dir=~/gitRepo/my_repo remote add origin git@bitbucket.org:username/my_repo.git
fatal: Not a git repository: '~/gitRepo/my_repo'
Is something I am missing. Basically I am trying to setup a sync of Redmine with BitBucket and this is one of the steps required.
--git-dirargument, just running the command from themy_repodirectory. – Isaac Jul 21 '12 at 19:58