%%{init: {"graph": {"htmlLabels": false}} }%%
graph LR
id1(Set your username <br>
$ git config --global user. name Your Name)
id2(Set your e-mail <br>
$ git config --global user.email )
id3(Initialize Git in your project <br>
$ git init)
id4( Add all files to tracking <br>
$ git add .)
id5(Save the current state with a message <br>
$ git commit -m Initial commit)
id6(See the current state of your project
$ git status)
id7(View changes you have made
$ git diff)
id8(Connect to a remote repo
$ git remote add origin <repository-url>)
id9(Push your changes to the remote repo
$ git push -u origin main)
id1-->id2
id3-->id4-->id5
id6-->id7
id8-->id9