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
| git branch | grep -v "main" | xargs git branch -D |
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
| // Make sure the repository is up to date with upstream | |
| (env) ryanvm@ubuntu:~/repos/firefox$ git checkout main && git pull | |
| Switched to branch 'main' | |
| Your branch is up to date with 'origin/main'. | |
| Already up to date. | |
| // Create a new local beta-uplift branch tracking the upstream beta branch | |
| (env) ryanvm@ubuntu:~/repos/firefox$ git checkout -b beta-uplift --track origin/beta | |
| Updating files: 100% (4058/4058), done. |
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
| git checkout <rev> && git describe | |
| Should output something like: | |
| llvmorg-16-init-11301-g163bb6d64e5f |
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
| [alias] | |
| amend = commit --amend | |
| amendne = commit --amend --no-edit | |
| b = branch | |
| bd = branch -D | |
| co = checkout | |
| cpc = "!git add . && git cherry-pick --continue" | |
| pr = pull --rebase | |
| rc = "!git add . && git rebase --continue" | |
| s = status |
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
| --pref "extensions.allow-non-mpc-extensions:true" "extensions.legacy.enabled:true" "xpinstall.signatures.required:false" "extensions.autoDisableScopes:0" "extensions.enabledScopes:5" |
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://sql.telemetry.mozilla.org/queries/4438/source#8912 | |
| Most Popular NVIDIA Driver Versions | |
| SELECT | |
| system_gfx[1].adapters[1].driver_version AS driver_version, | |
| COUNT(*) AS sample_count | |
| FROM longitudinal_v20170422 | |
| WHERE | |
| system_gfx[1].adapters[1].vendor_id = '0x10de' | |
| AND system_os[1].version = '10.0' |