Skip to content

Instantly share code, notes, and snippets.

View jianinz's full-sized avatar

Jianing Zhang jianinz

View GitHub Profile
@jianinz
jianinz / gitdifflogcheatsheet.txt
Last active April 13, 2018 06:15
Git diff and log cheat sheet
git diff A..B_ == git diff B..A
git diff A...B != git diff B...A
git log A..B != git log B..A
git log A...B == git log B...A
git diff A..B shows all differences made on either A or B if they are diverged
git diff A...B shows the changes in B that are not in A if it diverged from A
git log A..B walk through head of B back to head of A ( or current position of B back to current position of A) and prints out difference from B to A
git log A...B shows all commits difference made on either A or B if they are diverged
@jianinz
jianinz / setup_android_studio
Created October 17, 2014 15:10
AndroidStudio installation automation bash script
#!/bin/bash
ANDROID_HOME=~/android-studio/sdk
ANDROID_SDK="${ANDROID_HOME}"
AS_EXECUTABLE_HOME=~/android-studio/bin
AS_HOME=~/android-studio
AS_FILENAME='android-studio-bundle-135.1339820-linux.tgz'
AS_URL="https://dl.google.com/android/studio/install/0.8.6/${AS_FILENAME}"
# Check if there is running process
AS_PID=`pgrep -f AndroidStudio`