See this Cloudup stream for visual references.
The short answer is that I miss everything. There is no comparing the two projects. Stash's feature set is a shadow of Github's.
What a project looks like on Github:
| [diff] | |
| tool = p4merge | |
| [difftool "p4merge"] | |
| path = C:/Program Files/Perforce/p4merge.exe | |
| [merge] | |
| summary = true | |
| tool = p4merge | |
| [mergetool "p4merge"] | |
| path = C:/Program Files/Perforce/p4merge.exe | |
| keepBackup = false |
| [TestFixture] | |
| public class IntegrationTestExample | |
| { | |
| // You'll want the FubuMVC.Katana package for this | |
| private EmbeddedFubuMvcServer theServer; | |
| [SetUp] | |
| public void SetUp() | |
| { | |
| theServer = new MyApplication().RunEmbedded(); |
| # | |
| # Assumptions | |
| # | |
| # 1. If you have a Octopus release deployed, say 1.0.0.73, there is a git | |
| # tag set for that commit in GitHub that is "v1.0.0.73". | |
| # | |
| # 2. You have TeamCity label each successful build in GitHub with the format | |
| # "v{build number}. Sidenote: it appears that TeamCity only labels the | |
| # default branch, but not feature branches. | |
| # |
See this Cloudup stream for visual references.
The short answer is that I miss everything. There is no comparing the two projects. Stash's feature set is a shadow of Github's.
What a project looks like on Github:
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var server = WebApp.Start("http://localhost:1002/", (app) => | |
| { | |
| var config = new HttpConfiguration(); | |
| config.MapHttpAttributeRoutes(); | |
| config.Services.Replace(typeof(IExceptionHandler), new RethrowExceptionHandler()); |
Find it here: https://github.com/bitemyapp/learnhaskell
| #!/bin/bash | |
| usage() { | |
| cat << EOF | |
| Usage: $0 [OPTION]... COMMAND | |
| Execute the given command in a way that works safely with cron. This should | |
| typically be used inside of a cron job definition like so: | |
| * * * * * $(which "$0") [OPTION]... COMMAND | |
| Arguments: |
| //This is for your web api controllers. | |
| public class HttpControllerActivator : IHttpControllerActivator | |
| { | |
| private readonly IContainer _container; | |
| public HttpControllerActivator(IContainer container) | |
| { | |
| _container = container; | |
| } |
| using System; | |
| using System.Diagnostics; | |
| using System.Numerics; | |
| #if NETCOREAPP2_1_OR_GREATER | |
| using System.Buffers.Binary; | |
| #endif | |
| #nullable enable |