Skip to content

Instantly share code, notes, and snippets.

@lamegaton
lamegaton / AdbCommands
Last active April 23, 2024 16:37 — forked from ernestkamara/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@ernestkamara
ernestkamara / AdbCommands
Created June 26, 2018 08:42 — forked from Pulimet/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@carnivore
carnivore / gist:997001
Created May 28, 2011 16:20
How to Git Stash
# Sometimes you want to patch in some changes while you're working,
# but you don't want to make a commit. In this case, use git stash.
# Stash your work (any will do)
$ git stash save
$ git stash
# Do your magic
# See what you got