I hereby claim:
- I am rwbaumg on github.
- I am rwbaumg (https://keybase.io/rwbaumg) on keybase.
- I have a public key ASCZw0INTgEXD-18MMJNEO2A2iSQOkTQ4J8e2OZLcwjxQwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # 0x19e Networks | |
| # This script automates backing up a Trac project | |
| # settings | |
| PROJECTS_ROOT="/storage/trac/projects" | |
| BACKUP_ROOT="/storage/trac/backup" | |
| if [[ -z "$1" ]]; then | |
| echo "Usage: $0 <project name>" >&2 |
A Quick Cheat Sheet for common Git VCS tasks.
It's generally a good idea to sign your commits, so that others can verify that it came from you. Git includes the following git commit arguments for signing commits:
| Argument | Description |
|---|---|
--signoff |
Add Signed-off-by line by the committer at the end of the commit log message. |