Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
f1a80006
Unverified
Commit
f1a80006
authored
Jan 19, 2023
by
Carlo Sala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(brew)!: rename `buf` alias to `bfu`
BREAKING CHANGE: rename `buf` alias to `bfu` to avoid conflicts with protobuf tool
parent
61dd3682
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
README.md
plugins/brew/README.md
+14
-14
brew.plugin.zsh
plugins/brew/brew.plugin.zsh
+1
-1
No files found.
plugins/brew/README.md
View file @
f1a80006
...
...
@@ -17,20 +17,20 @@ defined for convenience.
## Aliases
| Alias | Command | Description |
| -------- | ------------------------------------- | ------------------------------------------------------------------- |
|
`bcubc`
|
`brew upgrade --cask && brew cleanup`
| Update outdated casks, then run cleanup. |
|
`bcubo`
|
`brew update && brew outdated --cask`
| Update Homebrew data, then list outdated casks. |
|
`bcubc`
|
`brew upgrade --cask && brew cleanup`
| Update outdated casks, then run cleanup. |
|
`brewp`
|
`brew pin`
| Pin a specified formula so that it's not upgraded. |
|
`brews`
|
`brew list -1`
| List installed formulae or the installed files for a given formula. |
|
`brewsp`
|
`brew list --pinned`
| List pinned formulae, or show the version of a given formula. |
|
`bubc`
|
`brew upgrade && brew cleanup`
| Upgrade outdated formulae and casks, then run cleanup. |
|
`bugbc`
|
`brew upgrade --greedy && brew cleanup`
| Upgrade outdated formulae and casks (greedy), then run cleanup.
|
|
`bubo`
|
`brew update && brew outdated`
| Update Homebrew data, then list outdated formulae and casks. |
|
`bubu`
|
`bubo && bubc`
| Do the last two operations above. |
|
`b
uf`
|
`brew upgrade --formula`
| Upgrade only formulas (not casks). |
|
`buz`
|
`brew uninstall --zap`
| Remove all files associated with a cask. |
| Alias | Command
| Description |
| -------- | -------------------------------------
--
| ------------------------------------------------------------------- |
|
`bcubc`
|
`brew upgrade --cask && brew cleanup`
| Update outdated casks, then run cleanup. |
|
`bcubo`
|
`brew update && brew outdated --cask`
| Update Homebrew data, then list outdated casks. |
|
`bcubc`
|
`brew upgrade --cask && brew cleanup`
| Update outdated casks, then run cleanup. |
|
`brewp`
|
`brew pin`
| Pin a specified formula so that it's not upgraded. |
|
`brews`
|
`brew list -1`
| List installed formulae or the installed files for a given formula. |
|
`brewsp`
|
`brew list --pinned`
| List pinned formulae, or show the version of a given formula. |
|
`bubc`
|
`brew upgrade && brew cleanup`
| Upgrade outdated formulae and casks, then run cleanup. |
|
`bugbc`
|
`brew upgrade --greedy && brew cleanup`
| Upgrade outdated formulae and casks (greedy), then run cleanup.
|
|
`bubo`
|
`brew update && brew outdated`
| Update Homebrew data, then list outdated formulae and casks. |
|
`bubu`
|
`bubo && bubc`
| Do the last two operations above. |
|
`b
fu`
|
`brew upgrade --formula`
| Upgrade only formulas (not casks). |
|
`buz`
|
`brew uninstall --zap`
| Remove all files associated with a cask. |
## Completion
...
...
plugins/brew/brew.plugin.zsh
View file @
f1a80006
...
...
@@ -35,7 +35,7 @@ alias bugbc='brew upgrade --greedy && brew cleanup'
alias
bubo
=
'brew update && brew outdated'
alias
bubu
=
'bubo && bubc'
alias
bubug
=
'bubo && bugbc'
alias
b
uf
=
'brew upgrade --formula'
alias
b
fu
=
'brew upgrade --formula'
alias
buz
=
'brew uninstall --zap'
function
brews
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment