from aryan: most guides i found online weren't helpful for me, hope this helps tho :)
ssh root@<server-ip-address>Optional but recommended:
sudo apt update && sudo apt upgrade -y| // zod schema | |
| z.object({ | |
| // valid if string or: | |
| optional: z.string().optional(), // field not provided, or explicitly `undefined` | |
| nullable: z.string().nullable(), // field explicitly `null` | |
| nullish: z.string().nullish(), // field not provided, explicitly `null`, or explicitly `undefined` | |
| }); | |
| // type | |
| { |
Pre-requisite: You have to know your last commit message from your deleted branch.
git reflogSearch for message in the list:
a901eda HEAD@{18}: commit: <last commit message>
Now you have two options, either checkout revision or HEAD
| # Rename Git branch locally and remotely | |
| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
| Type | Emoji | code |
|---|---|---|
| feat | ✨ | :sparkles: |
| fix | 🐛 | :bug: |
| docs | 📚 | :books: |
| style | 💎 | :gem: |
| refactor | 🔨 | :hammer: |
| perf | 🚀 | :rocket: |
| test | 🚨 | :rotating_light: |
| build | 📦 | :package: |