I have a system that is installed in an area that does not have external network access and I can\'t bring in my computer. The system was developed with all source in a GIT
Use git bundle. Create a bundle:
git bundle create update.bundle HEAD~5..HEAD
On the receiving side use git fetch or git pull:
git fetch
git pull
git pull update.bundle master