├── .gitattributes ├── .gitignore ├── README.md ├── project_pull_clone_developer.bat ├── project_pull_clone_developer.sh ├── project_pull_clone_qa.bat ├── project_pull_clone_qa.sh └── scripts ├── config.py ├── tool_gitpull.py ├── util.py └── util_git.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/README.md -------------------------------------------------------------------------------- /project_pull_clone_developer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/project_pull_clone_developer.bat -------------------------------------------------------------------------------- /project_pull_clone_developer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/project_pull_clone_developer.sh -------------------------------------------------------------------------------- /project_pull_clone_qa.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/project_pull_clone_qa.bat -------------------------------------------------------------------------------- /project_pull_clone_qa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/project_pull_clone_qa.sh -------------------------------------------------------------------------------- /scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/scripts/config.py -------------------------------------------------------------------------------- /scripts/tool_gitpull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/scripts/tool_gitpull.py -------------------------------------------------------------------------------- /scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/scripts/util.py -------------------------------------------------------------------------------- /scripts/util_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XGameSolutions/XGame/HEAD/scripts/util_git.py --------------------------------------------------------------------------------