One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| ## Delete a remote branch | |
| $ git push origin --delete <branch> # Git version 1.7.0 or newer | |
| $ git push origin :<branch> # Git versions older than 1.7.0 | |
| ## Delete a local branch | |
| $ git branch --delete <branch> | |
| $ git branch -d <branch> # Shorter version | |
| $ git branch -D <branch> # Force delete un-merged branches | |
| ## Delete a local remote-tracking branch |
| public class NetworkStateReceiver extends BroadcastReceiver { | |
| protected List<NetworkStateReceiverListener> listeners; | |
| protected Boolean connected; | |
| public NetworkStateReceiver() { | |
| listeners = new ArrayList<NetworkStateReceiverListener>(); | |
| connected = null; | |
| } |
A list of some other badges: http://shields.io/
| Alt Text | Image Src | Link |
|---|---|---|
| NPM version | https://badge.fury.io/{{programming_language:js | py}}/{{project_name}}.svg |
| Dependency Status | https://david-dm.org/{{username}}/{{project_name}}.svg | https://david-dm.org/{{username}}/{{project_name}} |
| devDependency Status | https://david-dm.org/{{username}}/{{project_name}}/dev-status.svg | https://david-dm.org/{{username}}/{{project_name}}#info=devDependencies |
| GEM Dependency Status | https://gemnasium.com/{{username}}/{{repo}}.png | https://gemnasium.com/{{username}}/{{repo}}) |
| /** | |
| * This method displays the given price on the screen. | |
| */ | |
| private void displayPrice(int number) { | |
| TextView priceTextView = (TextView) findViewById(R.id.price_text_view); | |
| priceTextView.setText(NumberFormat.getCurrencyInstance().format(number)); | |
| } |