3

Do you think I will have any kind of problem by using different git software versions between the remote and local copy? In my case the remote is 1.6.5.7 and the local is 1.6.5.1 (few bug fixes)

Thx ;)

delphaber
  • 199
  • 1
  • 13
  • 1
    I have a git repo setup using 1.6.5.? and have pushed/pulled from a machine with 1.4.?(not under my control) with no problems. – asm Dec 23 '09 at 12:47

4 Answers4

3

You will have no problems. Git is generally compatible between even major version changes; minor version differences should never introduce any incompatibilities.

Brian Campbell
  • 322,767
  • 57
  • 360
  • 340
2

Minor revs are generally completely compatible.

Azeem.Butt
  • 5,855
  • 1
  • 26
  • 22
2

Obvious, more general answer: try it and see!

Peter
  • 127,331
  • 53
  • 180
  • 211
2

1.5.x do not introduced any repository format incompatibility.
One good example of that, is the difference between local Git and GitHub Git versions:
GitHub runs with with 1.6.4.3 and supports any 1.5.x clients.

Even the upcomming Git 1.7 will not introduce any major issues, only policy changes.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250