অনেকগুলো গিটহাব কমান্ড কিভাবে এক ক্লিকে ডিপ্লোয় করবেন?
প্রথমে মেইন ব্রাঞ্চে একটি ফাইল ক্রিয়েট করবেন “deploy.sh” নামে এই ফাইলে আপনার সব কমান্ড লিখে ফেলবেন। নিচে কিছু এক্সামপল দেওয়া হলো #!/bin/bash # Switch to the main branch git checkout main #Add and commit the changes git add . git commit -m “Improve performance” # Push the main branch to the remote repository git push origin main # Switch to the gh-pages branch git checkout gh-pages # Remove all files from the gh-pages branch ...