Follow these steps to configure a global Git hooks directory and set up a prepare-commit-msg
hook that appends diffs to commit messages.
- Create a directory
~/.git/hooks
to store your global hooks.mkdir -p ~/.git/hooks
Follow these steps to configure a global Git hooks directory and set up a prepare-commit-msg
hook that appends diffs to commit messages.
~/.git/hooks
to store your global hooks.
mkdir -p ~/.git/hooks
// ==UserScript== | |
// @name TD Paste Block Remover | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-11-07 | |
// @description Removes paste restrictions on TD's authentication page input fields only for paste actions. | |
// @author Marlen | |
// @match https://authentication.td.com/uap-ui/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=td.com | |
// @grant none | |
// @run-at document-body |
## | |
# proof_user_cleanup_and_repermission.rb | |
# | |
# A handy script to walk the user through cleaning up and re-permissioning a user in Proof. | |
# | |
# Ensure this script is run within the Rails environment. | |
# | |
# Usage: | |
# require 'open-uri'; eval(URI.open('https://gist.github.com/klondikemarlen/61cb36f4e3eb418eee5bf6195e5eb979/raw').read); UserCleanupAndRepermission.call | |
# |