Skip to content

Instantly share code, notes, and snippets.

@guerro323
Created August 6, 2021 11:11
Show Gist options
  • Select an option

  • Save guerro323/8e38e9b323f68db04407c92ecee506f5 to your computer and use it in GitHub Desktop.

Select an option

Save guerro323/8e38e9b323f68db04407c92ecee506f5 to your computer and use it in GitHub Desktop.
@echo off
echo:
echo This command tool will download all required files for PataNext development
echo Requirements
echo .Net 5
echo git
echo An internet connection for downloading the repositories and initial nuget packages
echo:
TIMEOUT 2 /nobreak
echo It will now download the required files.
echo:
echo Downloading GameHost [1/4]
echo:
git clone https://github.com/guerro323/GameHost.git FrameWork.GameHost
echo:
echo Downloading GameHost Network Module [2/4]
echo:
git clone https://github.com/StormiumTeam/GameHost.Simulation.Networking.git Module.Networking
echo:
echo Downloading PataNext [3/5]
echo:
git clone https://github.com/guerro323/patanext.git Game.PataNext
echo:
echo Downloading PataNext MasterServer [4/4]
echo:
git clone https://github.com/guerro323/patanext.masterserver.git MasterServer.PataNext
echo:
echo For Updating repositories:
echo - If you have an IDE you may have a git tool integrated, you will just need to update from the latest public data
echo - If you don't have an IDE (or don't have git integration), then use the command line and type "git fetch" and then "git pull"
echo For creating code that will be public:
echo - Only create necessary code, eg: add code that is linked to a pull request or an issue
echo - Fixes for bugs can be created without an initial issue, but it would be nice to have one (so that we can link to it)
echo For updating code:
echo - Create a pull request with your code
echo - Make sure that your code is well documented
TIMEOUT 2 /nobreak
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment