Project Creation
Initalize Git
git initThe git init command is used to create a new blank repository. It is used to make an existing project as a Git project.
Copy Repository
git clone
Ex: git clone RepoURLCommand-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.gitLast updated