2

I'm starting with Git, I already read the documentation about how to use it, just to test I create a simple repository using GitHub, everything is working good, but if I want to use my own server (not using GitHub), this is just curiosity, is there a table or list about the version correspondence between the Git client and server? in other words can I use an older server on a newer client or vice versa? I searched on several pages but I can't find this exact info, could anybody know the answer of this question?

Thanks for the help.

Ben Reser
  • 5,645
  • 1
  • 20
  • 29
CIOC
  • 1,305
  • 2
  • 18
  • 46

1 Answers1

1

The git package is not separated into a "server" and a "client", you would run the same git on your remote machine as the local one. To answer your questions: Git is extremely backwards compatible, meaning you can run an old version on one machine and a new version on the other and should be able to push/pull without any issues!

Have fun, git is a wonderful tool.

binaryatrocity
  • 946
  • 5
  • 10
  • 1
    Great answer, I thought that there were 2 different Git applications (a server and a client), but as you said, there's only one Git that can act as a client and also as a server, thanks. – CIOC Feb 20 '14 at 20:39
  • No problem! Glad i could help. Please "accept" my response if your question was answered! – binaryatrocity Feb 20 '14 at 20:41