Project Creation

  1. Initalize Git

git init

The git init command is used to create a new blank repository. It is used to make an existing project as a Git project.

  1. Copy Repository

git clone
Ex: git clone RepoURL

Command-line utility which is used to make a local copy of a remote repository. It accesses the repository through a remote URL.

git clone https://github.com/demo/demo.git

Last updated