Changes between Version 3 and Version 4 of github
- Timestamp:
- 11/13/12 15:52:04 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
github
v3 v4 30 30 }}} 31 31 Now you can work on your local branch jb and push to the remote origin/jellybean 32 33 == Update from original repo == 34 Create a remote for the upstream: 35 {{{ 36 git remote add upstream git://github.com/Andromadus/android_frameworks_base.git 37 }}} 38 Fetch the remote 39 {{{ 40 git fetch upstream 41 }}} 42 Merge the changes 43 {{{ 44 git merge upstream/jellybean 45 }}}