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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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
192.168.x.x(this will be the in the example below) and then you’ll need to share the folder in Windows XP.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.