Skip to content

Instantly share code, notes, and snippets.

View gdemarcosSFDC's full-sized avatar
💻
Making it happen

Glen de Marcos gdemarcosSFDC

💻
Making it happen
  • Salesforce
  • West Sacramento
View GitHub Profile
javascript:window.location.replace('https://test-dev-ed.lightning.force.com/one/one.app#'+btoa('{"componentDef":"forceSearch:searchPage","attributes":{"term":"%s","scopeMap":{"type":"TOP_RESULTS"},"context":{"disableSpellCorrection":false,"disableIntentQuery":false,"permsAndPrefs":{"SearchUi.searchUIPilotFeatureEnabled":false,"SearchExperience.LeftNavEnhancementEnabled":true,"Search.crossObjectsAutoSuggestEnabled":true,"SearchResultsLVM.lvmEnabledForSearchResultsOn":true,"MySearch.userCanHaveMySearchBestResult":false,"SearchResultsLVM.lvmEnabledForTopResults":false,"OrgPermissions.UnionAppNavSmartScope":false,"SearchUi.feedbackComponentEnabled":false,"SearchExperience.TopResultsSingleSOSLEnabled":false,"OrgPreferences.ChatterEnabled":true,"Search.maskSearchInfoInLogs":false,"SearchUi.orgHasAccessToSearchTermHistory":false,"SearchUi.searchUIInteractionLoggingEnabled":false,"MySearch.userCanHaveMySearch":false},"searchDialogSessionId":"0","searchSource":"INPUT_DESKTOP"},"groupId":"DEFAULT"},"state":{}}'));
@gdemarcosSFDC
gdemarcosSFDC / git-pull-all
Created June 16, 2025 18:59 — forked from grimzy/git-pull-all
Git pull all remote branches
#!/usr/bin/env bash
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all