GitHub all commands
git init: This command is used to initialize a new Git repository. It creates a new directory with a .git subdirectory that contains all the necessary files for Git to track changes.
Example:
csharpCopy code$ git init my-project
This will create a ...
viveksingh.hashnode.dev2 min read