Changes between Version 3 and Version 4 of github


Ignore:
Timestamp:
11/13/12 15:52:04 (11 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • github

    v3 v4  
    3030}}}
    3131Now you can work on your local branch jb and push to the remote origin/jellybean
     32
     33== Update from original repo ==
     34Create a remote for the upstream:
     35{{{
     36git remote add upstream git://github.com/Andromadus/android_frameworks_base.git
     37}}}
     38Fetch the remote
     39{{{
     40git fetch upstream
     41}}}
     42Merge the changes
     43{{{
     44git merge upstream/jellybean
     45}}}