1
0
mirror of synced 2025-12-22 03:16:52 -05:00
Files
docs/content/desktop/overview/launching-github-desktop-from-the-command-line.md
2025-02-25 17:27:55 +00:00

51 lines
1.5 KiB
Markdown

---
title: Launching GitHub Desktop from the command line
shortTitle: Launching from the command line
intro: You can launch GitHub Desktop from the command line.
redirect_from:
- /desktop/getting-started-with-github-desktop/launching-github-desktop-from-the-command-line
- /desktop/installing-and-configuring-github-desktop/launching-github-desktop-from-the-command-line
- /desktop/installing-and-configuring-github-desktop/overview/launching-github-desktop-from-the-command-line
versions:
fpt: '*'
ghec: '*'
ghes: '*'
---
{% mac %}
1. In the menu bar, select the **{% data variables.product.prodname_desktop %}** menu, then click **Install Command Line Tool**.
![Screenshot of the menu bar on a Mac. Under the "GitHub Desktop" dropdown menu, the option "Install command line tool" is highlighted in blue.](/assets/images/help/desktop/mac-install-command-line-tool.png)
1. Open Terminal.
1. {% data reusables.desktop.launch-desktop-from-command-line %}
```shell
github /PATH/TO/REPO
```
You can also change to your repository path and then type `github .` to open that repository.
```shell
$ cd /PATH/TO/REPO
[repo]$ github .
```
{% endmac %}
{% windows %}
1. Open a command prompt.
1. {% data reusables.desktop.launch-desktop-from-command-line %}
```shell
C:\Users\octocat> github PATH\TO\REPO
```
You can also change to your repository path and then type `github .` to open that repository.
```shell
C:\Users\octocat> cd REPO\MY-REPO
C:\Users\octocat\repo\myrepo> github .
```
{% endwindows %}