latest pushes
This commit is contained in:
31
fix_errors.sh
Executable file
31
fix_errors.sh
Executable file
@@ -0,0 +1,31 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Get the URL from .git/config
|
||||
git_url=$(git config --get remote.origin.url)
|
||||
|
||||
# Check if a URL is found
|
||||
if [ -z "$git_url" ]; then
|
||||
echo "No remote URL found in .git/config."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Clone the repository into a temporary folder
|
||||
git clone "$git_url" tmp_clone
|
||||
|
||||
# Check if the clone was successful
|
||||
if [ $? -eq 0 ]; then
|
||||
# Remove the existing .git directory if it exists
|
||||
if [ -d ".git" ]; then
|
||||
rm -rf .git
|
||||
fi
|
||||
|
||||
# Copy the .git directory from the clone to the current repository
|
||||
cp -r tmp_clone/.git .
|
||||
|
||||
# Remove the clone directory
|
||||
rm -rf tmp_clone
|
||||
|
||||
echo "Repository cloned and .git directory copied successfully."
|
||||
else
|
||||
echo "Failed to clone the repository."
|
||||
fi
|
25
index.html
25
index.html
@@ -103,7 +103,6 @@
|
||||
<h5><a
|
||||
href="https://application-ui-ux.github.io/mobile_catkin_modules_build_development_tools">Mobile
|
||||
Catkin Modules Build Development Tools</a></h5>
|
||||
<p> It is a catkin modules build development tool build with with ros in mind for mobile</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -116,10 +115,32 @@
|
||||
<h5><a href="https://application-ui-ux.github.io/mobile_message_service_generator">Mobile Message
|
||||
Service Generator</a>
|
||||
</h5>
|
||||
<p> It is a message service generator like ros build for for mobile</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6 col-sm-6">
|
||||
<div class="single-cat text-center mb-50">
|
||||
<div class="cat-icon">
|
||||
<span class="flaticon-pen"></span>
|
||||
</div>
|
||||
<div class="cat-cap">
|
||||
<h5><a href="https://application-ui-ux.github.io/mobile_message_generation_artifacts_core">Mobile
|
||||
Message Generation Artifacts Core</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-6 col-sm-6">
|
||||
<div class="single-cat text-center mb-50">
|
||||
<div class="cat-icon">
|
||||
<span class="flaticon-pen"></span>
|
||||
</div>
|
||||
<div class="cat-cap">
|
||||
<h5><a href="https://application-ui-ux.github.io/mobile_catkin_gradle_plugins">Mobile Catkin Gradle
|
||||
Plugins</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
Reference in New Issue
Block a user