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
| // ==UserScript== | |
| // @name BlueSky Filtred | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-09-28 | |
| // @description try to take over the world! | |
| // @author Ruslan D. Revellved (https://revellved.github.io) | |
| // @match https://bsky.app/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=bsky.app/* | |
| // @grant none | |
| // ==/UserScript== |
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
| #!/usr/bin/env bash | |
| ## -----------------------------------------------------------------------------------/ | |
| ## -- Requires cli mastodon toot client to work (https://github.com/ihabunek/toot) --/ | |
| ## -- Arch install: `pacman -S toot` -----------------------------------------------/ | |
| ## --------------------------------------------------------------------------------/ | |
| get_info() { | |
| cmus-remote -Q | grep "$1 " | sed "s/$1 //" | |
| } |
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
| 1. Нужно найти все коммиты, которые изменяли файл: | |
| git log --pretty=oneline --branches -- BIGFILE.ZIP | |
| 2.1 Удалить ссылки на файл из всей истории коммитов, начиная с последнего (пусть, хеш последнего коммита - 6df7640): | |
| git filter-branch --index-filter 'git rm --cached BIGFILE.ZIP --ignore-unmatch' --prune-empty --tag-name-filter cat -- --all | |
| 2.2 Удалить ссылки на каталог из истории коммитов: | |
| git filter-branch --force --index-filter 'git rm -r --cached --ignore-unmatch BIG/DIR' --prune-empty --tag-name-filter cat -- --all | |
| 3. Отправляем изменения на сервер: |