Skip to content

Instantly share code, notes, and snippets.

View richucj's full-sized avatar
🎯
Focusing

RICHU C J richucj

🎯
Focusing
  • Kerala,India
View GitHub Profile
@richucj
richucj / AdbCommands
Created September 10, 2022 05:26 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@richucj
richucj / git-apply-patch.md
Created June 28, 2021 12:14 — forked from emmanueltissera/git-apply-patch.md
Generate a git patch for a specific commit

Creating the patch

git format-patch -1 <sha>
OR
git format-patch -1 HEAD

Applying the patch

git apply --stat file.patch # show stats.
git apply --check file.patch # check for error before applying