How to filter emails from GitHub in Gmail and flag them with labels.
The labels in this document are just examples.
| Filter | Label |
|---|
| import java.io.FileDescriptor; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.OutputStream; | |
| import java.io.PrintStream; | |
| public class HelloWorld{ | |
| private static HelloWorld instance; | |
| public static void main(String[] args){ | |
| instantiateHelloWorldMainClassAndRun(); |
| set-option -g default-command $SHELL | |
| set-option -g status-fg white | |
| set-option -g status-bg default | |
| set-option -g status-interval 5 | |
| set-option -g message-fg white | |
| set-option -g message-bg default | |
| set-option -g message-attr bright | |
| set-option -g pane-border-fg black |
Short (72 chars or less) summary
More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).
Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
| #!/bin/bash | |
| # This script takes a remote repository and merges it into | |
| # the current one as a subdirectory | |
| set -e | |
| if [ -z "$1" ] | |
| then | |
| echo "Usage:" |