GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.
For more information, visit our search help section.
GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.
For more information, visit our search help section.
| javascript:(function()%7B"use strict"%3Bconst iconDownload%3D'<svg width%3D"24" height%3D"24" viewBox%3D"0 0 512 512"><g><g><path d%3D"M472%2C313v139c0%2C11.028-8.972%2C20-20%2C20H60c-11.028%2C0-20-8.972-20-20V313H0v139c0%2C33.084%2C26.916%2C60%2C60%2C60h392 c33.084%2C0%2C60-26.916%2C60-60V313H472z"><%2Fpath><%2Fg><%2Fg><g><g><polygon points%3D"352%2C235.716 276%2C311.716 276%2C0 236%2C0 236%2C311.716 160%2C235.716 131.716%2C264 256%2C388.284 380.284%2C264"><%2Fpolygon><%2Fg><%2Fg><%2Fsvg>'%2CiconNewtab%3D'<svg width%3D"24" height%3D"24" viewBox%3D"0 0 482.239 482.239"><path d%3D"m465.016 0h-344.456c-9.52 0-17.223 7.703-17.223 17.223v86.114h-86.114c-9.52 0-17.223 7.703-17.223 17.223v344.456c0 9.52 7.703 17.223 17.223 17.223h344.456c9.52 0 17.223-7.703 17.223-17.223v-86.114h86.114c9.52 0 17.223-7.703 17.223-17.223v-344.456c0-9.52-7.703-17.223-17.223-17.223zm-120.56 447.793h-310.01v-310.01h310.011v310.01zm103.337-103.337h-68.891v-223.896c0-9.52-7.703-17.223-17.223-17.223h-223.896v-68.891h310.011v310.01z"><%2Fpa |
| // This is a worker that can be deployed in a desperate situation in order | |
| // to disable all service worker caching by overwriting the running worker | |
| // with a no-op worker. | |
| // | |
| // Keep it close for when you need it. | |
| self.addEventListener("install", () => { | |
| // Activate immediately, taking control from any broken service workers | |
| self.skipWaiting(); | |
| }); |
| alias repo="open `git remote -v | grep fetch | awk '{print $2}' | sed 's/git@/http:\/\//' | sed 's/com:/com\//'`| head -n1" | |
| # Open the Pull Request URL for your current directory's branch (base branch defaults to master) | |
| function openpr() { | |
| github_url=`git remote -v | awk '/fetch/{print $2}' | sed -Ee 's#(git@|git://)#https://#' -e 's@com:@com/@' -e 's%\.git$%%' | awk '/github/'`; | |
| branch_name=`git symbolic-ref HEAD | cut -d"/" -f 3,4`; | |
| pr_url=$github_url"/compare/main..."$branch_name | |
| open $pr_url; | |
| } |
| gcd() { | |
| git clone "$1" && cd "$(basename "$1" .git)" | |
| } |
| import { toast } from 'react-toastify'; | |
| // In production, we register a service worker to serve assets from local cache. | |
| // This lets the app load faster on subsequent visits in production, and gives | |
| // it offline capabilities. However, it also means that developers (and users) | |
| // will only see deployed updates on the "N+1" visit to a page, since previously | |
| // cached resources are updated in the background. | |
| // To learn more about the benefits of this model, read https://goo.gl/KwvDNy. |
| gcd() { | |
| git clone "$1" && cd "$(basename "$1" .git)" | |
| } |
| / https://www.notion.so/wojtek/Awesome-Links-Stash-00df272564534a9c8b6f15c0f3a52d61 |