Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.gitignoreのhtml/user_data箇所に関する記述方法の設定誤り #6088

Open
k-yamamura opened this issue Jan 20, 2024 · 1 comment
Open
Milestone

Comments

@k-yamamura
Copy link
Contributor

k-yamamura commented Jan 20, 2024

概要(Overview)

.gitignoreの31行目にあるhtml/user_dataの記述方法が

/html/user_data/*
!/html/user_data/.gitkeep
!/html/user_data/assets/css/customize.css
!/html/user_data/assets/js/customize.js

と記述されているが、user_data配下にそもそも.gitkeepファイルが存在しておらず、
この記述方法だとcustomize.csscustomize.jsがgit管理対象にならない。

/html/user_data配下に、.gitkeepを作成し、.gitinoreの内容を、

/html/user_data/*
!/html/user_data/.gitkeep
!/html/user_data/assets/
/html/user_data/assets/*
!/html/user_data/assets/css/
/html/user_data/assets/css/*
!/html/user_data/assets/css/customize.css
!/html/user_data/assets/js/
/html/user_data/assets/js/*
!/html/user_data/assets/js/customize.js

に変更するとgit管理対象となる。

再現手順(Procedure)

特になし。

環境(Environment)

EC-CUBE : 4.x

@k-yamamura k-yamamura added the bug label Jan 20, 2024
@dotani1111 dotani1111 added this to the 4.3.0 milestone Jan 22, 2024
@dotani1111
Copy link
Contributor

@k-yamamura
ありがとうございます。
こちら確認して対応したいと思います。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants