Jump to content

[SOLVED] - OMG Github Sync


MackeyK24
 Share

Recommended Posts

This is just me complaining (because i know no better :) )...

BUT OH MY GOOD GITHUB... Why is it SOOOOO complicated to keep up-to-date with a fork... I go look at how to keep up to date with my fork and its HALF a page of a bunch of command line this and command like that... or setup this and that... WHY IS THERE NO BUTTON I HIT that just "Brings me up-to-date"

It is WAY easier for my just to delete the fork and re-fork for a clean copy... That can't be the only way to get cleanly caught up.. IS IT :(

 

Link to comment
Share on other sites

Exactly !!!

All this stuff:

An upstream link will help you retrieve all last changes from the official Babylon.js project. For this, we will follow this github tutorial:

> cd Babylon.js
> git remote -v
    origin  https://github.com/Temechon/Babylon.js.git (fetch)
    origin  https://github.com/Temechon/Babylon.js.git (push)
> git remote add upstream https://github.com/BabylonJS/Babylon.js.git
> git remote -v
    origin  https://github.com/Temechon/Babylon.js.git (fetch)
    origin  https://github.com/Temechon/Babylon.js.git (push)
    upstream        https://github.com/BabylonJS/Babylon.js.git (fetch)
    upstream        https://github.com/BabylonJS/Babylon.js.git (push)
Fetch the very last version

Ok! Now you're ready to retrieve all changes from the official repo. Each time you want to add a new feature, a bug fix, anything, you have to ensure you are working on the very last version. To do this, follow this Github tutorial:

> git fetch upstream
> git checkout master
> git merge upstream/master

 

I guess I'm just too lazy for all that... No button :(

 

@Temechon Thanks for the info though :) And Yo... HELLA SWEET DEBUG INSPECTOR... VERY KOOL

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...