Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.
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
| android { | |
| compileSdkVersion 22 | |
| buildToolsVersion "22.0.0" | |
| defaultConfig { | |
| applicationId "com.abc.example" | |
| minSdkVersion 16 | |
| targetSdkVersion 22 | |
| versionCode 1 | |
| versionName "1.0" |
First things first, Try this git basics challenges @ try.github.io
--
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
| import Ember from 'ember'; | |
| // Ember 1.10 | |
| export default Ember.Route.extend({ | |
| //---fire in order on route enter--- | |
| beforeModel(transition) { | |
| //empty by default |