I love my GitBash window because it helps maintain the illusion that I am not on Windows 7. I can type ls /c/ and see C:/. This has worked fine for me. Now I would like to create a git backup on an external drive that is not underneath C:. I plug in the drive, Windows assigned it "G:" but now, how do I tell Mingw32 to know about it?

I'd like to use $ git remote add backup /tmp/backup from this excellent answer but change /tmp to G:

$ git remote add backup /G/myrepo  ...
$ git push backup
fatal: 'C:/prog/Git/G/myrepo' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

I'm not sure what information is useful.

$ git --version
git version 1.7.0.2.msysgit.0
$ ls G:
ls: G:: No such file or directory
link|improve this question
1  
Why are you fighting your OS? – SLaks Oct 3 '11 at 15:34
you are aware that by adding the git bin dir to the PATH you can just use cmd and type stuff like git remote add g:/myrepo ? – stijn Oct 3 '11 at 15:39
I'm not sure what you are saying. git's bin is in my PATH but I couldn't get "ls G:/" to work. Thanks. – user333947 Oct 3 '11 at 15:49
in the windows command line it's not ls but dir g: – stijn Oct 4 '11 at 6:42
feedback

migrated from stackoverflow.com Oct 3 '11 at 15:34

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 2 down vote accepted

Go to Disk Management in Computer Management, right-click the drive in question, click Change Drive Letters and Paths, and mount it to a folder in your C: drive.

link|improve this answer
thank you. I don't want to tell you how long I googled around to try to figure this out. – user333947 Oct 3 '11 at 15:47
You're welcome. You should accept this answer by clicking the hollow check. – SLaks Oct 3 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

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