To use Git on the command line, you will need to download, install, and configure Git on your computer. You can also install to use from the command line. For more information, see “About.”
If you want to work with Git locally, but do not want to use the command line, you can instead download and install the client. For more information, see “Installing and configuring .”
If you do not need to work with files locally, lets you complete many Git-related actions directly in the browser, including:
Download and install the latest version of Git.
Note: If you are using a Chrome OS device, additional set up is required:
apt install git
and then type y
when prompted.When you connect to a repository from Git, you will need to authenticate with using either HTTPS or SSH.
Note: You can authenticate to using , for either HTTP or SSH. For more information, see gh auth login
.
If you clone with HTTPS, you can cache your credentials in Git using a credential helper. For more information, see “Cloning with HTTPS urls” and “Caching your credentials in Git.”
If you clone with SSH, you must generate SSH keys on each computer you use to push or pull from . For more information, see “Cloning with SSH urls” and “Generating a new SSH key.”
You now have Git and all set up. You may now choose to create a repository where you can put your projects. Saving your code in a repository allows you to back up your code and share it around the world.