mirror of
https://github.com/extrawurst/gitui.git
synced 2024-12-27 11:03:03 +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
|
## Added
|
||||||
- new `undo-last-commit` command [[@remique](https://github.com/remique)] ([#758](https://github.com/extrawurst/gitui/issues/758))
|
- 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
|
## Fixed
|
||||||
- openssl vendoring broken on macos ([#772](https://github.com/extrawurst/gitui/issues/772))
|
- openssl vendoring broken on macos ([#772](https://github.com/extrawurst/gitui/issues/772))
|
||||||
|
@ -33,8 +33,7 @@ mod progress;
|
|||||||
mod push;
|
mod push;
|
||||||
mod push_tags;
|
mod push_tags;
|
||||||
pub mod remote_progress;
|
pub mod remote_progress;
|
||||||
///
|
pub mod remote_tags;
|
||||||
pub mod remotes;
|
|
||||||
mod revlog;
|
mod revlog;
|
||||||
mod status;
|
mod status;
|
||||||
pub mod sync;
|
pub mod sync;
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
//!
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
asyncjob::AsyncJob,
|
asyncjob::AsyncJob,
|
||||||
error::Result,
|
error::Result,
|
@ -12,7 +12,7 @@ use crate::{
|
|||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use asyncgit::{
|
use asyncgit::{
|
||||||
asyncjob::AsyncSingleJob,
|
asyncjob::AsyncSingleJob,
|
||||||
remotes::AsyncRemoteTagsJob,
|
remote_tags::AsyncRemoteTagsJob,
|
||||||
sync::cred::{extract_username_password, need_username_password},
|
sync::cred::{extract_username_password, need_username_password},
|
||||||
sync::{get_tags_with_metadata, TagWithMetadata},
|
sync::{get_tags_with_metadata, TagWithMetadata},
|
||||||
AsyncGitNotification, CWD,
|
AsyncGitNotification, CWD,
|
||||||
|
Loading…
Reference in New Issue
Block a user