From c4e7720e303fbb1b3c321f9f6ba2d83e060dd6e0 Mon Sep 17 00:00:00 2001 From: Sorvani Date: Sat, 11 Jan 2014 13:26:42 -0800 Subject: [PATCH] Updated Public EQEmulator Server Setup Guide (Windows 32 bit, No Webserver) (markdown) --- ...up-Guide-(Windows-32-bit,-No-Webserver).md | 24 +++++++------------ 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md b/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md index f6c125a..2603431 100644 --- a/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md +++ b/Public-EQEmulator-Server-Setup-Guide-(Windows-32-bit,-No-Webserver).md @@ -90,22 +90,14 @@ These next steps will walk you through downloading the C++ source code and then 1. Open the `C:\EQ` folder and then right click on the folder called Source. 1. From the menu that pops up, select 'GIT Bash'. 1. A command window should pop up (similar but not the same as the standard Windows command prompt). -1. Type: `git clone git://github.com/EQEmu/Server.git .`
Note the . at the end of the command, i.e. there is a space after Server.git and then a period/full-stop. This is important. It tells GIT to clone the source code into the current folder , i.e. C:\EQ\Source If you omitted the . it would create a new folder called C:\EQ\Source\Server and download the source into that.
The output of the git clone command should look similar to this:` - -Cloning into '.'... -remote: Counting objects: 1288, done. -remote: Compressing objects: 100% (1070/1070), done. -remote: Total 1288 (delta 225), reused 1262 (delta 199) -Receiving objects: 100% (1288/1288), 3.17 MiB | 856 KiB/s, done. -Resolving deltas: 100% (225/225), done. -Checking out files: 100% (1181/1181), done.` - -If you go to C:\EQ\Source in Windows Explorer, you should see a bunch of files and sub-folders have appeared, namely - -CMakeLists.txt LICENSE.md cmake eqlaunch ucs zone shared_memory README.md common loginserver utils GPL.txt changelog.txt dependencies queryserv world - -Note that if you want to update your source code in the future to the latest version, follow the process above, but instead of typing 'git clone ...' you would just type: -git pull +1. Type: `git clone git://github.com/EQEmu/Server.git .`
Note the . at the end of the command, i.e. there is a space after Server.git and then a period/full-stop. This is important. It tells GIT to clone the source code into the current folder , i.e. C:\EQ\Source If you omitted the . it would create a new folder called C:\EQ\Source\Server and download the source into that.
The output of the git clone command should look similar to this:
`Cloning into '.'...
+remote: Counting objects: 1288, done.
+remote: Compressing objects: 100% (1070/1070), done.
+remote: Total 1288 (delta 225), reused 1262 (delta 199)
+Receiving objects: 100% (1288/1288), 3.17 MiB | 856 KiB/s, done.
+Resolving deltas: 100% (225/225), done.
+Checking out files: 100% (1181/1181), done.`
+1. Go to C:\EQ\Source in Windows Explorer, you should see a bunch of files and sub-folders have appeared, namely `CMakeLists.txt LICENSE.md cmake eqlaunch ucs zone shared_memory README.md common loginserver utils GPL.txt changelog.txt dependencies queryserv world`
Note that if you want to update your source code in the future to the latest version, follow the process above, but instead of typing `git clone ...` you would just type: `git pull` and that would check for updates to the source code and download the latest version if there have been any changes since you last did a git clone or git pull.