name: svn-to-git-migration description: > Guide users through migrating a Subversion (SVN) repository to a standalone Git repository, then execute the migration using platform-native scripts. Use this skill whenever the user mentions SVN migration, converting SVN to Git, "we're moving away from SVN", "git svn is missing", "git-svn not found on Windows", or wants to import SVN history into a Git repo — even if they don't use the word "migrate". Also use when someone asks how to preserve SVN history in Git, convert branches/tags from SVN, or set up a Git mirror of an SVN repo.
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
| alias: | |
| - name: a | |
| value: aliae | |
| - name: g | |
| value: git | |
| - name: z | |
| value: zoxide | |
| - name: ls | |
| value: exa -la --icons | |
| if: hasCommand "exa" |
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
| aliae: | |
| - alias: g | |
| value: git |
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
| { | |
| "Ansi 7 Color" : { | |
| "Green Component" : 0.73333334922790527, | |
| "Blue Component" : 0.73333334922790527, | |
| "Red Component" : 0.73333334922790527 | |
| }, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { |
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
| f500 | f0001 | vector_square | |
|---|---|---|---|
| f501 | f0003 | access_point | |
| f502 | f0002 | access_point_network | |
| f503 | f0004 | account | |
| f504 | f0005 | account_alert | |
| f505 | f0006 | account_box | |
| f506 | f0007 | account_box_outline | |
| f507 | f0008 | account_check | |
| f508 | f0009 | account_circle | |
| f509 | f000a | account_convert |
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
| #!/bin/bash | |
| cd /home/mastodon/live | |
| bin/tootctl media remove --days=7 | |
| bin/tootctl preview-cards remove --days=7 | |
| bin/tootctl statuses remove --days=3 | |
| bin/tootctl media remove-orphans |
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
| Application: MixedRealityFeatureTool.exe | |
| CoreCLR Version: 6.0.822.36306 | |
| .NET Version: 6.0.8 | |
| Description: The process was terminated due to an unhandled exception. | |
| Exception Info: System.IO.IOException: The process cannot access the file 'C:\Users\jan\AppData\Local\MixedRealityFeatureTool\MixedRealityFeatureTool.log' because it is being used by another process. | |
| at Microsoft.Win32.SafeHandles.SafeFileHandle.CreateFile(String fullPath, FileMode mode, FileAccess access, FileShare share, FileOptions options) | |
| at Microsoft.Win32.SafeHandles.SafeFileHandle.Open(String fullPath, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize) | |
| at System.IO.Strategies.OSFileStreamStrategy..ctor(String path, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize) | |
| at System.IO.Strategies.FileStreamHelpers.ChooseStrategyCore(String path, FileMode mode, FileAccess access, FileShare share, FileOptions options, Int64 preallocationSize) | |
| at |
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
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "Output": "", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "background": "p:yellow", | |
| "foreground": "p:black", |
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
| if (!(Test-Path $PROFILE)) { | |
| $profileDir = Split-Path $PROFILE | |
| if (!(Test-Path $profileDir)) { | |
| New-Item -Path $profileDir -ItemType Directory | Out-Null | |
| } | |
| '' > $PROFILE | |
| } | |
| function Write-ExitIfNeeded { | |
| param ( |
NewerOlder