Commands to get commit statistics for a Git repository from the command line -
using git log
, git shortlog
and friends.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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" |
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'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
welcome: Ember.inject.service('welcome-service'), | |
init(){ | |
console.log(this.get('welcome').name, this.get('foo').name); | |
} | |
}); |
First things first, Try this git basics challenges @ try.github.io
--
There are three different way the variable naming convention we follow.
- Camel case
Camel case: numberOfPeople
A series of words, with each intermeidiate word started with a capital letter. Called "Camel Case" because the capital letters make it look like the humps of a camel.
- Kebab case
- Screen a capture and convert to gif on windows using Licecap
- Prevent the unnecessary git commit using commit lint
What is ember ?
What is ember-cli ?
What is Mixins & Services and its diff ?
What is Helpers ?
Component Lifecycle hooks?
NewerOlder