mirror of
https://github.com/extrawurst/gitui.git
synced 2024-12-26 18:43:37 +03:00
some cleanup and changelog
This commit is contained in:
parent
0fa3e0f5a8
commit
850a930053
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## Added
|
||||
- new `undo-last-commit` command [[@remique](https://github.com/remique)] ([#758](https://github.com/extrawurst/gitui/issues/758))
|
||||
- taglist: show arrow-symbol on tags not present on origin [[@cruessler](https://github.com/cruessler)] ([#776](https://github.com/extrawurst/gitui/issues/776))
|
||||
|
||||
## Fixed
|
||||
- openssl vendoring broken on macos ([#772](https://github.com/extrawurst/gitui/issues/772))
|
||||
|
@ -33,8 +33,7 @@ mod progress;
|
||||
mod push;
|
||||
mod push_tags;
|
||||
pub mod remote_progress;
|
||||
///
|
||||
pub mod remotes;
|
||||
pub mod remote_tags;
|
||||
mod revlog;
|
||||
mod status;
|
||||
pub mod sync;
|
||||
|
@ -1,3 +1,5 @@
|
||||
//!
|
||||
|
||||
use crate::{
|
||||
asyncjob::AsyncJob,
|
||||
error::Result,
|
@ -12,7 +12,7 @@ use crate::{
|
||||
use anyhow::Result;
|
||||
use asyncgit::{
|
||||
asyncjob::AsyncSingleJob,
|
||||
remotes::AsyncRemoteTagsJob,
|
||||
remote_tags::AsyncRemoteTagsJob,
|
||||
sync::cred::{extract_username_password, need_username_password},
|
||||
sync::{get_tags_with_metadata, TagWithMetadata},
|
||||
AsyncGitNotification, CWD,
|
||||
|
Loading…
Reference in New Issue
Block a user