https://nvie.com/posts/a-successful-git-branching-model/
git checkout develop
git checkout -b new-feature
# PR to merge new-featurehttps://nvie.com/posts/a-successful-git-branching-model/
git checkout develop
git checkout -b new-feature
# PR to merge new-feature| #!/bin/bash | |
| # Input database name | |
| echo "---" | |
| echo "wpinstall.sh - A WordPress installation shell script" | |
| echo "by Rutger Laurman" | |
| echo "---" | |
| echo "- Requires WP-CLI, make sure you install that first (http://wp-cli.org/)" | |
| echo "- Check file for configurations" | |
| echo "- Downloads, configures, installs WordPress, default theme and plugins" |
| module['exports'] = function echoHttp (hook) { | |
| hook.debug("Debug messages are sent to the debug console"); | |
| hook.debug(hook.params); | |
| hook.debug(hook.req.path); | |
| hook.debug(hook.req.method); | |
| public class User | |
| { | |
| public User(){ | |
| Friends = new List<FriendInfo>(); | |
| } | |
| [Key] | |
| public int UserId { get; set; } | |
| [Required] | |
| public string EmailAddress { get; set; } |