Advertisement
marduk191

Add PDT cm-11.0 kernel branch to your local kernel repo

Jul 30th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.39 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. ## Add PDT cm-11.0 kernel repo as a remote
  4. git remote add pdt git://github.com/PantechDevTeam/android_kernel_pantech_msm8660-common.git
  5.  
  6. ## Fetch the pdt remote to sync
  7. git fetch pdt
  8.  
  9. ## Check out the remote branch <with version history> to local branch cm-11.0
  10. git checkout -b cm11.0 pdt/cm-11.0
  11.  
  12. # This will use githubs server bandwidth. Only requires around 10MB of upload.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement