Git- Clone Operations
We have all ready a repository. Other developer Ken wants to join our project and give code support. How can we do that with with Git. Git have clone mechanism to copy existing repository easily. $ git clone /home/john/myproject/ . Cloning into ‘.’… done. $ ls main.py As we see we have cloned it with … Read more