create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #!/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;; |