The procedure a flow chart of Gmail Bot:
graph TB
A[Gmail Bot] -- Create a new account --> B(Create a new account page)
A[Gmail Bot] -- Login existing account --> C(Login page)
B --> D{Rhombus}
C --> D
Tip: You could put your secret things in .env files
First check which branch you are on.
git branchIf your current branch is not "main". Switch to the "main" branch.
git checkout mainPull the updates from the remote origin main
git pull origin mainGo back to the branch that you use for the development.
git checkout dorjiUpdate the branch "dorji" with main using merge.
git merge main