Skip to content

Instantly share code, notes, and snippets.

View rwbaumg's full-sized avatar

Robert W. Baumgartner rwbaumg

View GitHub Profile

Keybase proof

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:

@rwbaumg
rwbaumg / trac-backup.sh
Created May 2, 2019 04:05
Simple backup script for Trac projects.
#!/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
@rwbaumg
rwbaumg / git-merge-branch-tag-cheatsheet.md
Last active April 18, 2019 02:14
A very short reference for common Git operations, with a focus on merging, branching and tagging commands.

Git Merging, Branches, Tags & more

A Quick Cheat Sheet for common Git VCS tasks.

Commits

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.