PCSX2 Documentation/Compiling on Windows: Difference between revisions

Line 192: Line 192:


==Getting the Source Code==
==Getting the Source Code==
Needs to be updated for github
*Open your git client and clone PCSX2 repository located at: [https://github.com/PCSX2/pcsx2.git https://github.com/PCSX2/pcsx2.git]
If using a command-line git client like Git Bash you have to do the followings:
*navigate to a folder that will host the repository;
*clone pcsx2 repository.
Example:
<source lang="powershell">
cd /dev/projects
git clone https://github.com/PCSX2/pcsx2.git pcsx2
</source>
*enter repository
<source lang="powershell">
cd pcsx2
</source>
*create a dev branch and switch to it (optional). Good git practices recommend to never develop in master branch.
<source lang="powershell">
git branch dev
git checkout dev.
</source>
I named my working branch dev, but it can have any name.
When ready proceed to next step.


==Compiling PCSX2's Binary==
==Compiling PCSX2's Binary==
ninja
34

edits