create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| #!/bin/bash | |
| # chmod +x and copy to ~/bin/p4merge | |
| # then | |
| # git config --global merge.tool p4merge | |
| # git config --global mergetool.keepTemporaries false | |
| # git config --global mergetool.prompt false | |
| if [ -n "$GIT_DIR" ]; then | |
| if $(git submodule | grep -q $2); then | |
| tmp=$(mktemp -t $2) && trap 'rm -rf $tmp' EXIT HUP INT QUIT TERM |
| #!/bin/sh | |
| # chmod a+x ~/bin/p4diff | |
| # git config --global diff.external p4diff | |
| [ $# -eq 7 ] && ~/bin/p4merge "$2" "$5" |
| git diff develop..master . |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # rclone_copy_to_r2.sh - Copy a local directory to Cloudflare R2, | |
| # excluding node_modules, .git, dist, etc. | |
| # ------------------------- Configuration ------------------------- | |
| R2_REMOTE="cf-r2" # Your rclone remote name for R2 | |
| R2_BUCKET="your-bucket-name" # Change to your actual bucket name | |
| # ----------------------------------------------------------------- | |
| set -e # Exit on any error |