git branch -w
时间: 2023-10-24 17:05:09 浏览: 106
git 常用命令备忘录
The command "git branch -w" is not a valid Git command. There is no "w" option for the "git branch" command. The valid options for "git branch" command are:
- -a: List both local and remote branches
- -d: Delete a local branch
- -D: Force delete a local branch
- -r: List only remote branches
- -v: Show the commit message and SHA-1 checksum for each branch
To see the full list of options for the "git branch" command, you can run the command "git branch --help".
阅读全文