I have a client server that has limited rights (no internet or many install priveleges), but it contains a version of TFS. Is there any way possible to get the data and history to bring down to my local computer to put into GIt?
I have tried Git-TFS but cannot get it installed on the server and tried running the source code.
Any ideas besides me downloaded the code for each branch and then adding them in branch by branch and ignoring the previous commits of each branch?
The client would have to export a zip file per branch HEAD, in order for you to import said branches in a new Git local repository.
That would indeed ignore commits done in each branch, which is standard for "complex" migration (where you keep the old repository for reference)
But you would still need to export back the new repository back to the client, which you can do with
git bundle.