In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:
- You can separate the code into different repositories.
| openapi: 3.0.1 | |
| info: | |
| title: Minimal Reproducer for Routing Bug | |
| version: 1.0.0 | |
| paths: | |
| /users/{userId}/profile: | |
| get: | |
| tags: | |
| - userAttributes | |
| operationId: getUserProfile |
| ''' | |
| *** | |
| Modified generic daemon class | |
| *** | |
| Author: http://www.jejik.com/articles/2007/02/ | |
| a_simple_unix_linux_daemon_in_python/www.boxedice.com | |
| License: http://creativecommons.org/licenses/by-sa/3.0/ |
| module BootstrapLayout exposing (main) | |
| import Html exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.Events exposing (onClick) | |
| import Navigation exposing (Location) | |
| import UrlParser exposing ((</>)) | |
| import Bootstrap.Navbar as Navbar | |
| import Bootstrap.Grid as Grid | |
| import Bootstrap.Grid.Col as Col |