Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
swsnr committed Apr 3, 2023
1 parent d1a680c commit ad5f211
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 31 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## [Unreleased]

## [0.5.0] – 2023-04-03

### Changed
- Update git2 to support latest libgit2.

Expand Down Expand Up @@ -115,7 +117,8 @@ Initial release.
* Add `prune` subcommand to prune gone branches.
* Add `--fetch` flag to fetch all remotes before looking for gone branches.

[Unreleased]: https://github.com/swsnr/git-gone/compare/v0.4.3...HEAD
[Unreleased]: https://github.com/swsnr/git-gone/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/swsnr/git-gone/compare/v0.4.3...v0.5.0
[0.4.3]: https://github.com/swsnr/git-gone/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/swsnr/git-gone/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/swsnr/git-gone/compare/v0.4.0...v0.4.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-gone"
version = "0.4.3"
version = "0.5.0"
description = "Manage \"gone\" Git branches"
homepage = "https://github.com/swsnr/git-gone"
repository = "https://github.com/swsnr/git-gone"
Expand Down
49 changes: 25 additions & 24 deletions README
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
GIT-GONE(1) git-gone GIT-GONE(1)

NAME
NNAAMMEE
git-gone - prune "gone" Git branches

SYNOPSIS
git gone [-fv] list
git gone [-fv] prune
SSYYNNOOPPSSIISS
ggiitt ggoonnee [_-_f_v] list
ggiitt ggoonnee [_-_f_v] prune

DESCRIPTION
DDEESSCCRRIIPPTTIIOONN
Lists or removes "gone" branches, that is, local branches which used to
have an upstream branch on a remote which is now removed.

This situation typically occurs in a pull request workflow where the
upstream branch gets deleted on the server after merging a pull
request, leaving the local branch from which the pull request
originated in place. git gone easily removes these left-over branches.
originated in place. ggiitt ggoonnee easily removes these left-over branches.

COMMANDS
CCOOMMMMAANNDDSS
list
List all gone branches.

Expand All @@ -26,47 +26,48 @@ COMMANDS
Prints a list of deleted branches including a command to restore
the branch as long as the referenced commit is still in the reflog.

OPTIONS
OOPPTTIIOONNSS
-f, --fetch
Run git fetch --prune --all first.
Run ggiitt ffeettcchh ----pprruunnee ----aallll first.

-v, --verbose
Print detailed progress when fetching.

-V, --version
Print the version number and exit.

EXIT STATUS
EEXXIITT SSTTAATTUUSS
0 on success, non-zero otherwise.

BUGS
Please report bugs to https://github.com/swsnr/git-gone/issues/new.
BBUUGGSS
Please report bugs to <https://github.com/swsnr/git-gone/issues/new>.

SEE ALSO
git(1)
SSEEEE AALLSSOO
ggiitt((11))

All credits for the idea go to Eugene Yokota (see
http://eed3si9n.com/):
<http://eed3si9n.com/>):

• git gone: cleaning stale local branches at
http://eed3si9n.com/git-gone-cleaning-stale-local-branches
<http://eed3si9n.com/git-gone-cleaning-stale-local-branches>

• git-gone in Bash at https://github.com/eed3si9n/git-gone
• git-gone in Bash at <https://github.com/eed3si9n/git-gone>

COPYRIGHT
Copyright 2018-2020 Sebastian Wiesner [email protected]
CCOOPPYYRRIIGGHHTT
Copyright 2018-2020 Sebastian Wiesner <[email protected]>

Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with the License. You may obtain
a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
not use this file except in compliance with the License. You may
obtain a copy of the License at
<http://www.apache.org/licenses/LICENSE-2.0>.

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied. See the License for the specific language governing
implied. See the License for the specific language governing
permissions and limitations under the License.

AUTHOR
AAUUTTHHOORR
Sebastian Wiesner

git-gone 0.4.3 GIT-GONE(1)
git-gone 0.5.0 GIT-GONE(1)
4 changes: 2 additions & 2 deletions git-gone.1
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
.\" Author: Sebastian Wiesner
.\" Generator: Asciidoctor 2.0.18
.\" Manual: git-gone
.\" Source: git-gone 0.4.3
.\" Source: git-gone 0.5.0
.\" Language: English
.\"
.TH "GIT\-GONE" "1" "" "git\-gone 0.4.3" "git\-gone"
.TH "GIT\-GONE" "1" "" "git\-gone 0.5.0" "git\-gone"
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.ss \n[.ss] 0
Expand Down
4 changes: 2 additions & 2 deletions git-gone.1.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
= git-gone(1)
Sebastian Wiesner <sebastian@swsnr.de>
:doctype: manpage
:revnumber: 0.4.3
:revdate: 2022-12-01
:revnumber: 0.5.0
:revdate: 2023-04-03
:mansource: git-gone {revnumber}
:manmanual: git-gone

Expand Down

0 comments on commit ad5f211

Please sign in to comment.