1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/content/get-started/quickstart/set-up-git.md
Vedant Singhania 045d90947e added section for git installation on Chrome (#13174)
Co-authored-by: Sarah Edwards <skedwards88@github.com>
2022-01-04 17:22:30 +00:00

83 lines
4.6 KiB
Markdown

---
title: Set up Git
redirect_from:
- /git-installation-redirect
- /linux-git-installation
- /linux-set-up-git
- /mac-git-installation
- /mac-set-up-git
- /set-up-git-redirect
- /win-git-installation
- /win-set-up-git
- /articles/set-up-git
- /github/getting-started-with-github/set-up-git
- /github/getting-started-with-github/quickstart/set-up-git
intro: 'At the heart of {% data variables.product.prodname_dotcom %} is an open source version control system (VCS) called Git. Git is responsible for everything {% data variables.product.prodname_dotcom %}-related that happens locally on your computer.'
versions:
fpt: '*'
ghes: '*'
ghae: '*'
ghec: '*'
topics:
- Pull requests
- Issues
- Notifications
- Accounts
---
## Using Git
To use Git on the command line, you'll need to download, install, and configure Git on your computer. You can also install {% data variables.product.prodname_cli %} to use {% data variables.product.prodname_dotcom %} from the command line. For more information, see "[About {% data variables.product.prodname_cli %}](/github-cli/github-cli/about-github-cli)."
If you want to work with Git locally, but don't want to use the command line, you can instead download and install the [{% data variables.product.prodname_desktop %}]({% data variables.product.desktop_link %}) client. For more information, see "[Installing and configuring {% data variables.product.prodname_desktop %}](/desktop/installing-and-configuring-github-desktop/)."
If you don't need to work with files locally, {% data variables.product.product_name %} lets you complete many Git-related actions directly in the browser, including:
- [Creating a repository](/articles/create-a-repo)
- [Forking a repository](/articles/fork-a-repo)
- [Managing files](/repositories/working-with-files/managing-files)
- [Being social](/articles/be-social)
## Setting up Git
1. [Download and install the latest version of Git](https://git-scm.com/downloads).
{% note %}
**Note**: If you are using a Chrome OS device, additional set up is required:
1. Install a terminal emulator such as Termux from the Google Play Store on your Chrome OS device.
2. From the terminal emulator that you installed, install Git. For example, in Termux, enter `apt install git` and then type `y` when prompted.
{% endnote %}
2. [Set your username in Git](/github/getting-started-with-github/setting-your-username-in-git).
3. [Set your commit email address in Git](/articles/setting-your-commit-email-address).
## Next steps: Authenticating with {% data variables.product.prodname_dotcom %} from Git
When you connect to a {% data variables.product.prodname_dotcom %} repository from Git, you'll need to authenticate with {% data variables.product.product_name %} using either HTTPS or SSH.
{% note %}
**Note:** You can authenticate to {% data variables.product.product_name %} using {% data variables.product.prodname_cli %}, for either HTTP or SSH. For more information, see [`gh auth login`](https://cli.github.com/manual/gh_auth_login).
{% endnote %}
### Connecting over HTTPS (recommended)
If you [clone with HTTPS](/github/getting-started-with-github/about-remote-repositories/#cloning-with-https-urls), you can [cache your {% data variables.product.prodname_dotcom %} credentials in Git](/github/getting-started-with-github/caching-your-github-credentials-in-git) using a credential helper.
### Connecting over SSH
If you [clone with SSH](/github/getting-started-with-github/about-remote-repositories/#cloning-with-ssh-urls), you must [generate SSH keys](/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) on each computer you use to push or pull from {% data variables.product.product_name %}.
## Celebrate
Congratulations, you now have Git and {% data variables.product.prodname_dotcom %} all set up! You may now choose to create a repository where you can put your projects. This is a great way to back up your code and makes it easy to share the code around the world. For more information see "[Create a repository](/articles/create-a-repo)".
You can create a copy of a repository by forking it and propose the changes that you want to see without affecting the upstream repository. For more information see "[Fork a repository](/articles/fork-a-repo)."
Each repository on {% data variables.product.prodname_dotcom %} is owned by a person or an organization. You can interact with the people, repositories, and organizations by connecting and following them on {% data variables.product.product_name %}. For more information see "[Be social](/articles/be-social)."
{% data reusables.support.connect-in-the-forum-bootcamp %}