-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
aliases
executable file
·28 lines (15 loc) · 937 Bytes
/
aliases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export NINJA_SUMMARIZE_BUILD=1
export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] "
export EDITOR=nano
export VISUAL=nano
alias origin='git checkout -f origin/main'
alias gfetch='git fetch --tags'
alias rebase='git rebase-update'
alias gsync='gclient sync --with_branch_heads --with_tags -f -R -D'
alias gnls='gn ls out/thorium'
alias show='git show-ref'
alias runhooks='gclient runhooks'
alias pgo='python3 tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles'
alias pgow='python3 tools/update_pgo_profiles.py --target=win64 update --gs-url-base=chromium-optimization-profiles/pgo_profiles'
alias pgom='python3 tools/update_pgo_profiles.py --target=mac update --gs-url-base=chromium-optimization-profiles/pgo_profiles'
alias pgomac-arm='python3 tools/update_pgo_profiles.py --target=mac-arm update --gs-url-base=chromium-optimization-profiles/pgo_profiles'