@cerema/cadriciel 1.3.5 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/global/init.js +2 -2
- package/package.json +1 -1
package/cli/global/init.js
CHANGED
|
@@ -129,7 +129,7 @@ module.exports = (args) => {
|
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
exec(
|
|
132
|
-
'git init && git add --all && git commit -m "first commit"',
|
|
132
|
+
'git init && git add --all && git commit -m "first commit" && git checkout -b dev',
|
|
133
133
|
(errorGit) => {
|
|
134
134
|
if (errorGit) {
|
|
135
135
|
spinner.fail('Error occurred during git operations:', errorGit);
|
|
@@ -154,7 +154,7 @@ module.exports = (args) => {
|
|
|
154
154
|
|
|
155
155
|
👉 https://dev.siipro.fr 👈
|
|
156
156
|
|
|
157
|
-
|
|
157
|
+
──────────────────────────────────────────────────────────────\n`
|
|
158
158
|
);
|
|
159
159
|
}
|
|
160
160
|
);
|