This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Author: Eitan Blumin (t: @EitanBlumin | b: eitanblumin.com) | |
| Date: February, 2019 | |
| Description: | |
| This is a condensed SQL Server Checkup of most common and impactful best practices. | |
| Some of the checks are based on BP_Check.sql in Tiger Toolbox (by Pedro Lopez) | |
| */ | |
| DECLARE | |
| @NumOfMinutesBackToCheck INT = 360, | |
| @MinutesBackToCheck INT = 360, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git flow init | |
| touch index.html | |
| git add . | |
| git commit -m "add index.html" |