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
# List of usefull snipets I always reuse. | |
# Get all file types | |
$extensionList = @((Get-ChildItem -Recurse -File).Extension); | |
$extensionList | Select-Object -Unique | |
# Snippets for git support in the team | |
# ------------------------------------------- | |
# When someone cannot checkout the files from lfs (whatever the user does, the file remain empty with a size of 1K) |