This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function git_svn_shallow_clone() { | |
# Shallowly clones an SVN repository using `git svn`. | |
# | |
# Example: Clone directly into the CWD. | |
# Note: if your connection fails midway through the cloning, you can pick up from | |
# where you left off by simply invoking the clone function again. Neat, right? | |
# $ git_svn_shallow_clone <url> . | |
# | |
# You may need to run this in your cloned folder if you need to resume cloning from | |
# an interrupted connection. |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"https://www.example.com/", | |
"http://www.example.com/basket.php", | |
"http://www.example.org/airport?account=branch&account=alarm", | |
"http://example.com/?bottle=arch&birth=art", | |
"https://www.example.com/adjustment/bee.html", | |
"http://www.example.com/", | |
"http://example.com/bomb/bear?bone=behavior&arm=ball", | |
"http://www.example.com/", | |
"https://example.com/bubble", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Copy PR title and link as Markdown | |
// @namespace https://gist.github.com/ErichDonGubler/17cdd30c4b40c93596da1d813ef327cb | |
// @version 2025-03-26.1 | |
// @description Adds a `Copy link` button to PR title controls that copies the PR title and link as a Markdown link (i.e., `[PR Title](https://github.com/…/pull/…)`). | |
// @author Erich Gubler <[email protected]> | |
// @match https://github.com/*/*/pull/* | |
// @match https://github.com/*/*/issues/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cache/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll('[data-sigil="differential-load"]').forEach(el => el.click()) |
OlderNewer