$ brew install git-flow
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
# Copyright: Benjamin Weiss (keyboardsurfer) https://github.com/keyboardsurfer | |
# Under CC-BY-SA V3.0 (https://creativecommons.org/licenses/by-sa/3.0/legalcode) | |
# built application files | |
*.apk | |
*.ap_ | |
# lint folder | |
lint |
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
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch | |
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short | |
type = cat-file -t | |
dump = cat-file -p |
To Use the option (⌥) key, set it as meta key
⌃a
: Go to the beginning of the line⌃e
: Go to the end of the line⌃p
: Previous command (Up arrow)⌃n
: Next command (Down arrow)⌃f
: Forward one character⌃b
: Backward one character⌃xx
: Toggle between the start of line and current cursor position
A product flavor defines a customized version of the application build by the project. A single project can have different flavors which change the generated application
ex: set two different flavors of your app
productFlavors {
develop {
applicationId "com.your.app.1"
versionName "1.0.0"
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
## General | |
[ ] The code works | |
[ ] Follows coding conventions | |
[ ] There are no usages of 'magic numbers' | |
[ ] All variables are in the smallest scope possible | |
[ ] All class, variable, and method modifiers are correct. | |
[ ] There is no dead code (inaccessible at Runtime) | |
[ ] No code can be replaced with library functions | |
[ ] Required logs are present | |
[ ] No debugging code, no System.out.print, no stack traces info |