You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> You can alternatively use the `core.hooksPath` configuration to point to the `.githooks` folder using `git config --local core.hooksPath .githooks`if you don't already have a hooks path defined system-wide.
228
+
> [!TIP]
229
+
> You can alternatively use the `core.hooksPath` configuration to point to the `.githooks` folder using `git config --local core.hooksPath .githooks`if you don't already have a hooks path defined system-wide.
230
230
231
-
> [!NOTE]
232
-
> The git hooks will check that your code is properly formatted before commiting.
233
-
> This is done both to avoid future merge conflict and ensure uniformity inside the code base.
231
+
> [!NOTE]
232
+
> The git hooks will check that your code is properly formatted before commiting.
233
+
> This is done both to avoid future merge conflict and ensure uniformity inside the code base.
234
234
235
235
* Configure git to automatically update submodules.
236
236
```shell
237
237
git config --local submodule.recurse true
238
238
```
239
239
240
-
> [!NOTE]
241
-
> Git does not automatically update submodules when switching branches.
242
-
> Without this configuration, you will need to remember to add `--recurse-submodules` to `git checkout` when switching to old branches.
240
+
> [!NOTE]
241
+
> Git does not automatically update submodules when switching branches.
242
+
> Without this configuration, you will need to remember to add `--recurse-submodules` to `git checkout` when switching to old branches.
243
243
244
-
> [!TIP]
245
-
> This will keep the submodule in `dd-java-agent/agent-jmxfetch/integrations-core` up-to-date.
246
-
> There is also an automated check when opening a pull request if you are trying to submit a module version change (usually an outdated version).
244
+
> [!TIP]
245
+
> This will keep the submodule in `dd-java-agent/agent-jmxfetch/integrations-core` up-to-date.
246
+
> There is also an automated check when opening a pull request if you are trying to submit a module version change (usually an outdated version).
247
247
248
248
> [!NOTE]
249
249
> Both git configurations (hooks and submodule) will only be applied to this project and won't apply globally in your setup.
0 commit comments