Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions pages/common/git-for-each-ref.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# git for-each-ref

> List and optionally format references (branches, tags) in a Git repository.
> More information: <https://git-scm.com/docs/git-for-each-ref>.

- List all refs (branches and tags):

`git for-each-ref`

- List only branches:

`git for-each-ref refs/heads/`

- List only tags:

`git for-each-ref refs/tags/`

- Show branches merged into HEAD:

`git for-each-ref --merged HEAD refs/heads/`

- List short names of all refs:

`git for-each-ref --format="%(refname:short)"`

- Sort refs by committer date (most recent first):

`git for-each-ref --sort=-committerdate`

- Sort refs by committer date (oldest first):

`git for-each-ref --sort=committerdate`

- Limit output to a specified number of refs:

`git for-each-ref --count={{count}}`