This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package rx.android.samples; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.os.HandlerThread; | |
import android.os.Looper; | |
import android.util.Log; | |
import android.view.View; | |
import java.util.concurrent.TimeUnit; | |
import rx.Observable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z "$1" ];then | |
echo "Lack of parameters. Use: $0 [path_to_repo]" | |
echo "run from dir _changes_BRANCH1_not_BRANCH2" | |
exit | |
fi | |
PTH="$1" | |
WORKD=$(pwd) | |
REMOTE="$2" | |
temp_branch1="${WORKD%_not_*}" |
NewerOlder