Unverified Commit 4e2317c7 authored by Julian's avatar Julian Committed by GitHub

fix(lol): use https for `yolo` calls (#11320)

parent 4806f755
...@@ -49,7 +49,7 @@ plugins=(... lol) ...@@ -49,7 +49,7 @@ plugins=(... lol)
| `violenz` | `git rebase` | | `violenz` | `git rebase` |
| `visible` | `echo` | | `visible` | `echo` |
| `wtf` | `dmesg` | | `wtf` | `dmesg` |
| `yolo` | `git commit -m "$(curl -s http://whatthecommit.com/index.txt)"` | | `yolo` | `git commit -m "$(curl -s https://whatthecommit.com/index.txt)"` |
## Usage Examples ## Usage Examples
...@@ -66,6 +66,6 @@ nowai u=r,go= some.file ...@@ -66,6 +66,6 @@ nowai u=r,go= some.file
# ssh root@catserver.org # ssh root@catserver.org
pwned root@catserver.org pwned root@catserver.org
# git commit -m "$(curl -s http://whatthecommit.com/index.txt)" # git commit -m "$(curl -s https://whatthecommit.com/index.txt)"
yolo yolo
``` ```
...@@ -45,7 +45,7 @@ alias bringz='git pull' ...@@ -45,7 +45,7 @@ alias bringz='git pull'
alias chicken='git add' alias chicken='git add'
alias oanward='git commit -m' alias oanward='git commit -m'
alias ooanward='git commit -am' alias ooanward='git commit -am'
alias yolo='git commit -m "$(curl -s http://whatthecommit.com/index.txt)"' alias yolo='git commit -m "$(curl -s https://whatthecommit.com/index.txt)"'
alias letcat='git checkout' alias letcat='git checkout'
alias violenz='git rebase' alias violenz='git rebase'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment