Skip to content

Commit

Permalink
update issue #352
Browse files Browse the repository at this point in the history
- Fix information displayed on repo create to add all instead of * as we want to include .(dot) files like .gitignore as well.
  • Loading branch information
oyeaussie committed Aug 24, 2024
1 parent 038ecde commit 3b491e0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h5 class="text-uppercase text-center">New repository created at remote location
<p>git remote add origin <span id="repo_url"></span></p>
<p>git pull</p>
<p>git checkout dev</p>
<p>git add *</p>
<p>git add --all</p>
<p>git commit -m "Initial Commit"</p>
<p>git push -u origin dev</p>
<p></p>
Expand All @@ -30,7 +30,7 @@ <h5 class="text-uppercase text-center">New repository created at remote location
<p>git remote add origin <span id="repo_url_public"></span></p>
<p>git pull</p>
<p>git checkout dev</p>
<p>git add *</p>
<p>git add --all</p>
<p>git commit -m "Initial Commit"</p>
<p>git push -u origin dev</p>
<p></p>
Expand Down

0 comments on commit 3b491e0

Please sign in to comment.