From 3b491e0f39f80d8cffc19114f9c49eb44f75d865 Mon Sep 17 00:00:00 2001 From: "Gurdeep Singh (Guru)" Date: Sat, 24 Aug 2024 14:59:55 +1000 Subject: [PATCH] update issue #352 - Fix information displayed on repo create to add all instead of * as we want to include .(dot) files like .gitignore as well. --- .../Core/Views/Default/html/devtools/modules/repodetails.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/Core/Views/Default/html/devtools/modules/repodetails.html b/apps/Core/Views/Default/html/devtools/modules/repodetails.html index 564b1065a..eeb4799b0 100644 --- a/apps/Core/Views/Default/html/devtools/modules/repodetails.html +++ b/apps/Core/Views/Default/html/devtools/modules/repodetails.html @@ -16,7 +16,7 @@
New repository created at remote location

git remote add origin

git pull

git checkout dev

-

git add *

+

git add --all

git commit -m "Initial Commit"

git push -u origin dev

@@ -30,7 +30,7 @@
New repository created at remote location

git remote add origin

git pull

git checkout dev

-

git add *

+

git add --all

git commit -m "Initial Commit"

git push -u origin dev