git: clean up plugin file and delete current_repository function

Closes #6329
This commit is contained in:
Marc Cornellà 2019-05-21 10:57:37 +02:00
commit 4ad4a81657
2 changed files with 20 additions and 34 deletions

View file

@ -191,7 +191,6 @@ These are aliases that have been removed, renamed, or otherwise modified in a wa
| Command | Description |
|:-----------------------|:----------------------------------------|
| current_branch | Return the name of the current branch |
| current_repository | Return the names of the current remotes |
| git_current_user_name | Returns the `user.name` config value |
| git_current_user_email | Returns the `user.email` config value |
@ -204,3 +203,9 @@ These features allow to pause a branch development and switch to another one (_"
| work_in_progress | Echoes a warning if the current branch is a wip |
| gwip | Commit wip branch |
| gunwip | Uncommit wip branch |
### Deprecated
| Command | Description | Reason |
|:-----------------------|:----------------------------------------|:----------------------------------------------------------------|
| current_repository | Return the names of the current remotes | Didn't work properly. Use `git remote -v` instead (`grv` alias) |