This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git checkout 你的分支名 | |
| git checkout -b feat/only-config | |
| git ls-files -z | grep -zvE '\.(json|yml|yaml|env|conf|ini|properties)$' | xargs -0I{} git checkout develop -- {} 2>/dev/null | |
| git add . | |
| git commit -m "chore: 仅配置改动,代码恢复到 develop" | |
OlderNewer