mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
git: change docs for git_main_branch
Also remove unnecesary dramatic remark
This commit is contained in:
parent
55a98fc06d
commit
83f6194929
2 changed files with 8 additions and 9 deletions
|
@ -208,13 +208,13 @@ These are aliases that have been removed, renamed, or otherwise modified in a wa
|
|||
|
||||
### Current
|
||||
|
||||
| Command | Description |
|
||||
|:-----------------------|:-----------------------------------------------------------------------------|
|
||||
| `grename <old> <new>` | Rename `old` branch to `new`, including in origin remote |
|
||||
| current_branch | Return the name of the current branch |
|
||||
| git_current_user_name | Returns the `user.name` config value |
|
||||
| git_current_user_email | Returns the `user.email` config value |
|
||||
| git_main_branch | Returns the name of the main branch: `master` if it exists, `main` otherwise |
|
||||
| Command | Description |
|
||||
|:-----------------------|:---------------------------------------------------------------------------------------|
|
||||
| `grename <old> <new>` | Rename `old` branch to `new`, including in origin remote |
|
||||
| current_branch | Return the name of the current branch |
|
||||
| git_current_user_name | Returns the `user.name` config value |
|
||||
| git_current_user_email | Returns the `user.email` config value |
|
||||
| git_main_branch | Returns the name of the main branch: from origin or from local branches, else 'master' |
|
||||
|
||||
### Work in Progress (WIP)
|
||||
|
||||
|
|
|
@ -25,8 +25,7 @@ function work_in_progress() {
|
|||
fi
|
||||
}
|
||||
|
||||
# Get the default 'main' branch
|
||||
# Marc(2020-07-11): I hope to be able to remove this someday
|
||||
# Get the default 'main' branch: from origin, from local branches, or else just 'master'
|
||||
function git_main_branch() {
|
||||
# Get default branch from the origin remote
|
||||
local branch
|
||||
|
|
Loading…
Reference in a new issue