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 branch
If your current branch is not "main". Switch to the "main" branch.
git checkout main
Pull the updates from the remote origin main
git pull origin main
Go back to the branch that you use for the development.
git checkout dorji
Update the branch "dorji" with main using merge.
git merge main