mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 06:37:46 +00:00
🩹 fix git init --initial-branch
string instead of bool (#959)
Just using the completions I realized that: ```nu # Create a new git repository export extern "git init" [ --initial-branch(-b) # initial branch name #should be --initial-branch(-b): string # initial branch name ] ``` because initial branch takes a string, it not a boolean
This commit is contained in:
parent
189bf3a706
commit
da307d0864
1 changed files with 1 additions and 1 deletions
|
@ -537,7 +537,7 @@ export extern "git stash drop" [
|
||||||
|
|
||||||
# Create a new git repository
|
# Create a new git repository
|
||||||
export extern "git init" [
|
export extern "git init" [
|
||||||
--initial-branch(-b) # initial branch name
|
--initial-branch(-b): string # initial branch name
|
||||||
]
|
]
|
||||||
|
|
||||||
# List or manipulate tags
|
# List or manipulate tags
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue