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
| Homebrew build logs for glasskube on Manjaro Linux | |
| Build date: 2024-03-22 10:01:54 |
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/zsh | |
| # use gitk to explore your changes | |
| # this skript uses zsh + .oh-my-zsh shortcuts (check them out - they are awesome anyway) | |
| # you want to meld your commits? | |
| # $git rebase -i HASH | |
| # HASH = last commit to meld (you need to pick the latest) | |
| GAS_TIME=$(date "+%Y-%m-%d %H:%M:%S") |
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/zsh | |
| # pmig.at | |
| # this skript uses zsh + .oh-my-zsh shortcuts (check them out - they are awesome anyway) | |
| usage () { | |
| echo "USE IT:" | |
| echo "zsh auto-rsync LOCALFOLDER REMOTE PATH" | |
| echo "e.g. \"zsh auto-rsync test me@mytestsever:parentfortest\"" | |
| exit |
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 | |
| while : | |
| do | |
| clear | |
| git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative -20 | |
| sleep 1 | |
| done |