Changes between Version 2 and Version 3 of github
- Timestamp:
- 11/13/12 15:39:17 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
github
v2 v3 19 19 git remote add origin git@github.com:guhl/android_frameworks_base.git 20 20 git remote show origin 21 }}} 22 If the remote branches are not shown as tracked do: 23 {{{ 24 git fetch 25 git remote show origin 26 }}} 27 Checkout a branch 28 {{{ 29 git checkout -b jb origin/jellybean 30 }}} 31 Now you can work on your local branch jb and push to the remote origin/jellybean