-
Notifications
You must be signed in to change notification settings - Fork 150
git and GitHub FAQ
goldy edited this page Jul 7, 2020
·
11 revisions
Ask a question by creating a new topic or post on the DiscussCESM forums!
- How can I clone someone's git clone to my directory on the same machine?
- How can I clone someone's git clone to my directory on a different machine?
Answer: git clone <path_name> [<local_dir>]
where <path_name>
is the location of the source git clone and the optional <local_dir>
is the name of the clone (default is a local directory of the same name as the original).
Answer: git clone ssh://<user>@<machine>:<path_name> [<local_dir>]
where <user>
is your user name on the remote machine, <machine>
is the machine name (e.g., cheyenne.ucar.edu), <path_name>
is the location of the source git clone on the remote machine, and the optional <local_dir>
is the name of the clone (default is a local directory of the same name as the original).
CAM wiki
CAM Documentation
CAM Model Development