Skip to content

Instantly share code, notes, and snippets.

View Saafo's full-sized avatar
🤣
Keep Swift!

Saafo

🤣
Keep Swift!
View GitHub Profile
@Saafo
Saafo / .gitworkflow.zsh
Last active October 10, 2024 03:16
My custom git workflow
#!/usr/bin/env zsh
# Author: @Saafo
# License: MIT
# MARK: rebase workflow
function grc() {( set -e
case "$1" in -h|help|--help)
echo "grc: git fetch && git rebase origin/HEAD --autostash"
return;;