1. Initialize a Git Repository # $ git init This will create .git directory to store all information for version control. 2. Checking out a Remote Repository # $ git checkout https://github.com/username/abc.git $ git checkout https://github.com/username/abc.git branch_name The last .git can be omitted. This will copy files in the remote repository. You can directly checkout a branch by adding branch_name to the tail of the command. To checkout a remote branch into the existing git local repos...