Skip to content

Instantly share code, notes, and snippets.

View tarikulwebx's full-sized avatar
🚀
Building the future, one commit at a time 🚀

Md. Tarikul Islam tarikulwebx

🚀
Building the future, one commit at a time 🚀
View GitHub Profile
@tarikulwebx
tarikulwebx / script.sh
Last active November 12, 2024 11:18 — forked from lopezjurip/script.sh
Github Full Code Review Process
# Create empty branch.
git checkout --orphan review
git rm -rf .
git commit --allow-empty -m "Create empty branch"
git push --set-upstream origin review
# Create `project` branch from `master` current state.
git checkout -b project
git merge main --allow-unrelated-histories
git push --set-upstream origin project