Compare commits
3 Commits
d603b0d87b
...
a1bd907fa1
| Author | SHA1 | Date | |
|---|---|---|---|
| a1bd907fa1 | |||
| fc6b921ffd | |||
| deda1260ea |
@@ -821,7 +821,7 @@
|
||||
<svg class="w-4 h-4 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
|
||||
</div>
|
||||
<span class="text-sm font-semibold text-gray-300">CartPulse AI</span>
|
||||
<span class="text-xs text-gray-600">by Earlybirds.me</span>
|
||||
<span class="text-xs text-gray-600">By Earlybirds.me</span>
|
||||
</div>
|
||||
<nav class="flex flex-wrap items-center justify-center gap-x-5 gap-y-2 text-xs font-medium">
|
||||
<a href="https://acg.earlybirds.me/" class="hover:text-white transition-colors">Demo</a>
|
||||
|
||||
23
push.sh
Executable file
23
push.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
BRANCH="main"
|
||||
|
||||
if [ -z "$(git status --porcelain)" ]; then
|
||||
echo "No changes to commit."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
MSG="update-$(date +%Y%m%d-%H%M%S)-$RANDOM"
|
||||
echo "Using commit message: $MSG"
|
||||
|
||||
echo "==> git add"
|
||||
git add .
|
||||
|
||||
echo "==> git commit"
|
||||
git commit -m "$MSG"
|
||||
|
||||
echo "==> git push"
|
||||
git push origin "$BRANCH"
|
||||
|
||||
echo "Done."
|
||||
Reference in New Issue
Block a user