File Hierarchy:
- .devcontainer
- mssql
installSQLtools.shpostCreateCommand.shsetup.sql
devcontainer.json
- mssql
The following illustrates how to convert MD to PDF
| using Microsoft.Extensions.DependencyInjection; | |
| namespace App.Services; | |
| public class AppServiceRegistrant : ServiceRegistrant | |
| { | |
| public AppServiceRegistrant(IServiceCollection services) | |
| : base(services) { } | |
| public override void Register() | |
| { |
ssh-keygen -t ed25519 -C "[email protected]"
# enter a file in which to save the key (/c/Users/YOU/.ssh/ed25519):[Press enter]
# enter passphrase(empty for no passphrase): [Type a passphrase]
# Enter same passphrase again: [Type passphrase again]
# from admin powershell
Get-Service -Name ssh-agent | Set-Service -StartupType Manual| ## Pre-requisite: You have to know your last commit message from your deleted branch. | |
| git reflog | |
| # Search for message in the list | |
| # a901eda HEAD@{18}: commit: <last commit message> | |
| # Now you have two options, either checkout revision or HEAD | |
| git checkout a901eda | |
| # Or | |
| git checkout HEAD@{18} |