- Go to Settings | Editor | File Types.
- Search for a type named "Markdown document generated by AI tools".
- If you see *.md inside that list, remove it.
- Then, go to the standard Markdown file type in that same list and add *.md back to it.
| $rootFolder = "." | |
| function GitPullSubfolders($folderPath) { | |
| Get-ChildItem -Path $folderPath -Directory | ForEach-Object { | |
| $subfolderPath = $_.FullName | |
| $gitFolderPath = Join-Path -Path $subfolderPath -ChildPath ".git" | |
| if (Test-Path $gitFolderPath) { | |
| Write-Host "Executing 'git pull' in $subfolderPath" | |
| Set-Location -Path $subfolderPath | |
| & git pull |
mongorestore --gzip --archive=<filename>.gz --db "<database_name>" --host=localhost:27017 --username=<user_name> --password=<password> --authenticationDatabase=adminmongodump --gzip --archive=.gz --db "" --host=localhost:27017 --username= --password= --authenticationDatabase=admin