2023년 9월 22일 금요일

Android kernel source code

  • Google Android kernel source (official)
    • https://android.googlesource.com/kernel/common/
      • git clone https://android.googlesource.com/kernel/common
    • kernel code update
      • git reset --hard HEAD
      • git pull
    • show current branch
      • git branch
    • git branch transition
      • git checkout <branch-name>
    • update code to up-to-date code
      • git pull
    • show log
      • git log
      • git log --author <name>
    • delete a local branch
      • git branch -d <branch-name>