前提・実現したいこと
gitにおいてブランチを切る際に以下のようなブランチ名でブランチを切りたい
git checkout -b feature/#1_hoge
発生している問題・エラーメッセージ
zsh: bad pattern: feature/#1_hoge
該当のソースコード
以下が.zshrc
のコードです
# # Executes commands at the start of an interactive session. # # Authors: # Sorin Ionescu <sorin.ionescu@gmail.com> # # Source Prezto. if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" fi # Customize to your needs... fpath=(/usr/local/share/zsh-completions $fpath) fpath=(/usr/local/share/zsh-completions $fpath) #glob表現対策 setopt +o nomatch #コメントを残しながらコードの実行 #gitでbranch切る時のbadpatternの解消 setopt interactivecomments setopt INTERACTIVE_COMMENTS
試したこと
以下のブランチ名ではブランチを切ることができました
feature/1 feature/feature1 feature_#1_hoge
補足情報(FW/ツールのバージョンなど)
macOS Catallina 10.15.7
zsh 5.7.1 (x86_64-apple-darwin19.0)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/17 01:22