..:: PCSX2 Forums ::..

Full Version: Easier way to 'update' the source files on my computer?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
So I want to apply some minor changes to GSdx for my own use, but I have to download the latest zip file from github every time to get the latest files. Is there an easier way to somehow automatically fetch the latest files from GitHub? I have VS2013 Ultimate installed.
Get the Gihub Windows client.

Go to the PCSX2 project page on Github and click on clone in desktop.

Whenever there's an update just sync the latest source
(or) you can use the git pull feature on the Git shell instead of syncing it on the app. the sync might sometimes not work.
Awesome, thanks. It's currently cloning pcsx2, seems to work fine. This will save time in the future. Smile

Btw, I won't be able to accidentally overwrite something on the online version that's on github.com with this right? Tongue
(05-06-2015, 09:43 PM)Ryudo Wrote: [ -> ]Btw, I won't be able to accidentally overwrite something on the online version that's on github.com with this right? Tongue

Nope, you can't do that unless you have write permissions, and only the devs do.
Alright, good to know I'm safe then. I was afraid I might mess something up on the github server when experimenting with codes lol.

This might actually be pretty handy as well in the case of a royal screw up on my local files. I could just re-sync with github files to recover any damage done.
(05-06-2015, 10:52 PM)Ryudo Wrote: [ -> ]This might actually be pretty handy in the case of a royal screw up. I could just re-sync my files with the github files to recover any damage done.

Yep.
(05-06-2015, 10:52 PM)Ryudo Wrote: [ -> ]Alright, good to know I'm safe then. I was afraid I might mess something up on the github server when experimenting with codes lol.

This might actually be pretty handy as well in the case of a royal screw up on my local files. I could just re-sync with github files to recover any damage done.

yeah, it makes messing with code much safer
if you want to sync the changes you made on the clone with your own fork in Github then, you should Git push in the Git shell. sync option in the GUI restores the repository changes to the clone rather than the changes done in the clone to the repository.

also, you need to make a pull request to overwrite the changes on the original PCSX2 repository. (It will get merged if, those with write access merge it to the source code)
(05-07-2015, 05:53 AM)ssakash Wrote: [ -> ]if you want to sync the changes you made on the clone with your own fork in Github then, you should Git push in the Git shell. sync option in the GUI restores the repository changes to the clone rather than the changes done in the clone to the repository.

Uh no. You can sync from the UI just fine. You need to commit changes, then sync. You don't have to use the command line(but for any serious work, it's better)
Pages: 1 2