Remove unused shell aliases for TYPO3

I've created my own wrapper for docs via nix.
I didn't use the other aliases for a very long time.
This commit is contained in:
Daniel Siepmann 2023-05-25 17:23:31 +02:00
parent e60588d340
commit dc73a5f8eb
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -96,14 +96,7 @@ in {
ta = "tmux attach";
tc = "tmux new-session -s ";
# TYPO3 contribution specific commands
t3Push = "git push origin HEAD:refs/for/main";
t3Pull = "git pull --rebase origin main; git checkout main";
t3Rollback = "git checkout main; git reset --hard origin/main";
t3Clean = "t3Rollback && t3Pull";
# TYPO3 documentation specific commands
t3Doc = "mkdir -p Documentation-GENERATED-temp; docker run --rm --user=$(id -u):$(id -g) -v $(pwd):/PROJECT:ro -v $(pwd)/Documentation-GENERATED-temp:/RESULT t3docs/render-documentation:latest makehtml -c allow_unsafe 0";
};
enableNixpkgsReleaseCheck = true;