Reputation: 29
I am planning to setup a GIT repository!
I wan't this repository to be located on a NAS server. My NAS has two 4TB discs which is set under RAID 1.
How should I do to clone such a GIT repository in IntelliJ? I want the source code to be checked in at Q: and the code that I have cloned should be at C: When I program, I want IntelliJ should be attached to the application code in C:
I want to be able to manage everything up from IntelliJ.
Upvotes: 1
Views: 165
Reputation: 8262
Since git supports file system remotes this is pretty easy.
Q:/<your future git repo folder>
git init --bare
(This will be your 'remote')File -> New -> Project from Version Control -> Git
filefile:///q/<folder from above>
q:/<folder from above>
; the other options are up to youThanks to @crashmstr for pointing out the efficiency problem with the file://
schema.
Upvotes: 1