Skip to content

Instantly share code, notes, and snippets.

View krebernisak's full-sized avatar
🎯
Focusing

Kristijan Rebernisak krebernisak

🎯
Focusing
View GitHub Profile
@krebernisak
krebernisak / git log between tags
Created September 25, 2013 10:04
All commits between two tags/commits
git log [TAG1]..[TAG2] --oneline
@krebernisak
krebernisak / git files changed between tags
Created September 25, 2013 10:03
Search for files between two tags/commits
git diff --name-status [TAG1]..[TAG2] | grep -e [PATTERN]
@krebernisak
krebernisak / Generate RSA key
Created May 22, 2013 13:32
Generate a new keystore
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -validity 10000
@krebernisak
krebernisak / Wireless ADB
Created May 22, 2013 13:24
Connect to Android with ADB over TCP
#From a command line on the computer that has the device connected via USB, issue the commands
adb tcpip 5555
adb connect <device-ip>:5555
#To tell the ADB daemon return to listening over USB
adb usb