Releases: siedentop/git-quickfix
Releases · siedentop/git-quickfix
v0.1.0
[0.1.0] - 2022-06-20
This version signifies that the project is as complete as possible. I do not expect
major updates (famous last words). Thank you to @rofrol, @betwo, @sharkdp, @msfjarvis for
their contributions to the project.
Added
- Made
develop
(viaorigin/develop
) a default target branch, as suggested by @msfjarvis here. - Use
git branch -rl
to identify where '*/HEAD' points to. Thanks to @rofrol in #11 for the suggestion. In case this fails, the previous solution of using one of main, master, develop, or devel is used.
Full Changelog: v0.0.5...v0.1.0
0.0.5 -- Keep by default & autostash.
[0.0.5] - 2021-11-29
Thanks to @betwo and @sharkdp for their suggestions on improvements.
Changed
- The option
--stash
has been renamed to--autostash
. Issue #9 - The option
--keep
is now the default, and the opposite is now called--remove
.
Providing--remove
will now drop the commit from the original branch. By default, the commit
stays on the branch. Issue #10
Removed
- Removed the
qf
alias. All votes were in favor 1.
0.0.4 -- Careful around unsaved work
[0.0.4] - 2020-11-10
Fixed
- Prevent loss of data in case of uncommitted changes. I profoundly apologize to
the effected user. PR#2.
Thanks to Sebastian Buck (@betwo) for the changes.
Added
- Option
--force
overwrites an existing branch. (Usegit reflog
in case of
inadvertent use.) - Option
--stash
auto stashes unstaged changes. Thanks to Sebastian Buck
(@betwo) for the idea and implementation.
Deprecated
- I am considering removing the
qf
alias in a later release. Please vote
here.