Is it possible to pull specific files or changes from another users working directory using thier Local IP address?
e.g.
git pull http://192.168.1.101/sandbox/somefile.php
It should be noted that both users are using Windows XP.
Thanks,
P.
|
feedback
|
|
Thanks to the response of both Rup's answer and eckes's answer, I've come up with the following so far: You'll need to know the IP address of the users PC
On your PC you need to have an initialised and empty git repository for you to add the new remote before you pull. Example:
The problem with the above is that it will copy the entire contents of the shared folder. I am still looking for a way to pull an individial file from another users working directory. | |||||
feedback
|
|
Yes, although it'll depend on what file sharing mechanisms you have. Your other user almost certainly won't be hosting their repository over HTTP by default, although you could have them set this up if you want. What you probably want to do is use XP's file sharing which you can do via IP, i.e.
if there's shared directory set up or
if there's no shared directory but you have sufficient access rights to their machine. | |||||||
feedback
|
|
As an alternative to Rup's answer, you could access windows domain boxes using
where So, if you pulled and want to push changes back to branch The cleaner alternative would be to have a bare repo on a computer that you and the other users have access to. In that case, you can | |||
|
feedback
|