I have PHP on running on an AS400. Can Git be also be installed on an AS400? I'd like to use it to maintain version control.

link|improve this question

75% accept rate
feedback

3 Answers

To the best of my knowledge, there is currently not a package that can be directly installed on the server.

However, it may be possible if you are willing to put in the work to get it to run in PASE (which is the unix equivalent in iOS/5).

link|improve this answer
feedback

You will need an AIX version to run in PASE (qsh). I do not believe this to be an officially supported platform for git (somehow those who REALLY like git, do not happen to work with IBM system with an entrance fee).

link|improve this answer
feedback

What are you looking to do change control on with git?

Just the PHP source ... or native code as well?

I know that Subversion has been ported to IBM i quite successfully.

For native code, however, I wouldn't suggest an IFS based source control system ... you want to go with a system that's designed to handle native source & objects.

link|improve this answer
The chief issue with native source (ex. QxxxSRC files) would be that each source record is prefixed by 12 bytes of line sequence and date changed. This might seem superfluous to git fans, since the change date (commit date) may be more accurately tracked by git-blame. – WarrenT Oct 27 '11 at 22:55
Actually, there's a whole lot more involved in REAL change control on IBM i ... managing the source is just one part of it. Reconstructing objects correctly, modifying databases without loosing data, ensuring that changes can be put in place without failing midstream due to locked objects, remote deployment, etc. – david Nov 23 '11 at 14:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.