This file contains 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
public class MainActivity | |
extends FragmentActivity | |
implements LoaderCallbacks<String> { | |
ProgressDialog dialog; | |
String json; | |
private static final int MEU_LOADER = 0; | |
@Override |
This file contains 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
# Function for get branch of git project | |
function parse_git_branch () { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
# Color | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
NO_COLOUR="\[\033[0m\]" | |
# PS1 is terminal workspace |
This file contains 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
Fluxo de Trabalho no Git | |
======================== | |
Primeiro crie um branch de desenvolvimento no seu repositório local: | |
$ git checkout --track origin/development | |
1. Trabalhe em sua tarefa, continuamente comitando em intervalos regulares para manter | |
o rastro daquilo que você fez. |