-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(git): add shortcut for initializing git repos the right way
- Loading branch information
Deavon McCaffery
committed
Aug 19, 2016
1 parent
3901fd9
commit 7ae4f5c
Showing
4 changed files
with
269 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# normalize line endings | ||
* text=auto | ||
|
||
# use c# diff for .cs files | ||
*.cs text diff=csharp | ||
|
||
# force conflict resolution of project files | ||
*.sln text eol=crlf merge=union | ||
*.csproj text merge=union | ||
*.vbproj text merge=union | ||
*.vcxproj text merge=union | ||
*.vcproj text merge=union | ||
*.dbproj text merge=union | ||
*.fsproj text merge=union | ||
*.lsproj text merge=union | ||
*.wixproj text merge=union | ||
*.modelproj text merge=union | ||
*.sqlproj text merge=union | ||
*.wwaproj text merge=union | ||
|
||
# xcode project files are unioned as binary files | ||
*.pbxproj binary merge=union | ||
|
||
# known binary files are treated as binary | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.ico binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.flv binary | ||
*.fla binary | ||
*.swf binary | ||
*.gz binary | ||
*.zip binary | ||
*.7z binary | ||
*.ttf binary | ||
*.pyc binary | ||
*.pdf binary | ||
|
||
# documentation | ||
*.md text | ||
LICENSE text | ||
AUTHORS text | ||
|
||
# known plain text files are treated as plain text | ||
*.doc text diff=astextplain | ||
*.DOC text diff=astextplain | ||
*.docx text diff=astextplain | ||
*.DOCX text diff=astextplain | ||
*.dot text diff=astextplain | ||
*.DOT text diff=astextplain | ||
*.pdf text diff=astextplain | ||
*.PDF text diff=astextplain | ||
*.rtf text diff=astextplain | ||
*.RTF text diff=astextplain | ||
|
||
# git/tfvc config | ||
.gitattributes text | ||
.gitignore text | ||
.tfignore text | ||
|
||
# web source file types | ||
*.php text | ||
*.css text | ||
*.sass text | ||
*.scss text | ||
*.less text | ||
*.styl text | ||
*.js text | ||
*.coffee text | ||
*.json text | ||
*.htm text | ||
*.html text | ||
*.xml text | ||
*.inc text | ||
*.pl text | ||
*.rb text | ||
*.py text | ||
*.scm text | ||
*.sql text | ||
|
||
# nuget files | ||
.nuspec text | ||
|
||
# config files | ||
.config text | ||
|
||
# windows files | ||
*.cmd text eol=crlf | ||
*.bat text eol=crlf | ||
*.txt text eol=crlf | ||
*.ini text eol=crlf | ||
*.ps1 text eol=crlf | ||
*.psm1 text eol=crlf | ||
*.psd1 text eol=crlf | ||
|
||
# unix files | ||
*.sh text eol=lf |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# user files | ||
*.user | ||
*.suo | ||
|
||
# build results | ||
[Dd]ebug/ | ||
[Dd]ebugPublic/ | ||
[Rr]elease/ | ||
[Rr]eleases/ | ||
[Tt]arget/ | ||
x64/ | ||
x86/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
[Aa]rtifacts/ | ||
|
||
# package manager artifacts | ||
[Pp]ackages/ | ||
[Nn]ode_[Mm]odules/ | ||
[Bb]ower_[Cc]omponents/ | ||
|
||
# visual studio 2015 cache/options | ||
[Pp]roject.lock.json | ||
[Cc]ondo.[Aa]ssembly[Ii]nfo.cs | ||
|
||
# ria/silverlight projects | ||
Generated_Code/ | ||
|
||
# sql server files | ||
*.mdf | ||
*.ndf | ||
*.ldf | ||
|
||
# jetbrains | ||
_ReSharper*/ | ||
*.[Rr]e[Ss]harper | ||
*.DotSettings.user | ||
_TeamCity* | ||
*.dotCover | ||
|
||
# include solution based resharper settings | ||
!*.[Dd]ot[Ss]ettings | ||
|
||
# stylecop | ||
[Ss]tyle[Cc]op.[Cc]ache | ||
|
||
# mstest results | ||
[Tt]est[Rr]esult*/ | ||
[Bb]uild[Ll]og.* | ||
[Bb]uild.[Ll]og | ||
|
||
# business intelligence projects | ||
*.rdl.data | ||
*.bim.layout | ||
*.bim_*.settings | ||
|
||
# microsoft fakes | ||
FakesAssemblies/ | ||
|
||
# azure build output | ||
csx/ | ||
*.build.csdef | ||
|
||
# windows store app package directory | ||
AppPackages/ | ||
|
||
# nuget exe | ||
nuget.exe | ||
|
||
# nuget packages | ||
*.nupkg | ||
|
||
# include msbuild targets in nuget | ||
!**/packages/**/build/ | ||
|
||
# include repositories.config for nuget | ||
!**/packages/repositories.config | ||
|
||
# include config file for nuget | ||
![Nn]u[Gg]et.config | ||
|
||
# include self (tfignore) | ||
!.tfignore | ||
!.gitignore | ||
!.gitattributes | ||
|
||
# mac files | ||
.DS_Store | ||
|
||
# win files | ||
[Tt]humbs.db | ||
|
||
# log files | ||
*.log | ||
|
||
# tsd | ||
[Tt]sd/ | ||
_tsd | ||
tsd | ||
tsd.cmd | ||
|
||
# mocha | ||
_mocha | ||
mocha | ||
mocha.cmd | ||
|
||
# bower | ||
bower | ||
_bower | ||
bower.cmd | ||
|
||
# gem | ||
[Gg]emfile.lock | ||
|
||
# docs | ||
vnd/ | ||
|
||
# hidden folders | ||
.*/ | ||
|
||
# condo files | ||
Condo.AssemblyInfo.cs |
This file contains 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