Basic Git Commands

Below are some essential Git commands to get started or check out the Git cheatsheet

Create a new repository:

  git init

Add files to staging area:

  git add <file_name>

Commit changes:

  git commit -m "Commit message"

View commit history:

  git log

Additional Tips

For more in-depth information and advanced topics, refer to the official Git documentation: [https://git-scm.com/doc](https://git-scm.com/doc)