create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
-- 1 .trustworthy | |
ALTER DATABASE <<DATABASE_NAME>> SET TRUSTWORTHY ON | |
GO | |
-- 2. Database owner sid in master database | |
DECLARE @Command VARCHAR(MAX) = 'ALTER AUTHORIZATION ON DATABASE::[<<DatabaseName>>] TO | |
[<<LoginName>>]' | |
SELECT @Command = REPLACE(REPLACE(@Command | |
, '<<DatabaseName>>', SD.Name) |
By Description | |
ASP.NET MVC 1 {603C0E0B-DB56-11DC-BE95-000D561079B0} | |
ASP.NET MVC 2 {F85E285D-A4E0-4152-9332-AB1D724D3325} | |
ASP.NET MVC 3 {E53F8FEA-EAE0-44A6-8774-FFD645390401} | |
ASP.NET MVC 4 {E3E379DF-F4C6-4180-9B81-6769533ABE47} | |
ASP.NET MVC 5 {349C5851-65DF-11DA-9384-00065B846F21} | |
C# {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} | |
C++ {8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942} | |
Database {A9ACE9BB-CECE-4E62-9AA4-C7E7C5BD2124} | |
Database (other project types) {4F174C21-8C12-11D0-8340-0000F80270F8} |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
A git choose-your-own-adventure!
This document is an attempt to be a fairly comprehensive guide to recovering from what you did not mean to do when using git. It isn't that git is so complicated that you need a large document to take care or your particular problem, it is more that the set of things that you might have done is so large that different techniques are needed depending on exactly what you have done and what you want to have happen.
""" | |
Creates pretty-looking commit messages for git. This was created to pretty | |
print the old-commit-id values for filter-branched-rewritten commits in | |
pyphantomjs from the phantomjs repository. | |
""" | |
import os | |
import sys |
Ok, I geeked out, and this is probably more information than you need. But it completely answers the question. Sorry. ☺
Locally, I'm at this commit:
$ git show
commit d6cd1e2bd19e03a81132a23b2025920577f84e37
Author: jnthn <jnthn@jnthn.net>
Date: Sun Apr 15 16:35:03 2012 +0200
When I added FIRST/NEXT/LAST, it was idiomatic but not quite so fast. This makes it faster. Another little bit of masak++'s program.
git cherry-pick -Xsubtree=<subdirectory> 517be2a88318de51f51397066575ab07fae825a1 --strategy=recursive -X <theirs> |