Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arquivo mac.md #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions mac.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Installacao do *Git* no *MacOS*

[Abra uma janela do terminal.](https://www.youtube.com/watch?v=okzqund_EbQ)

## Primeiro passo – Instalar o [*Homebrew*](http://brew.sh/)

> *Homebrew* é um sistema de gerenciamento de pacotes de software livre e de código aberto que simplifica a instalação do software no sistema operacional macOS da Apple e no Linux .

**Copie e cole o seguinte** na janela do terminal e **pressione `Enter`**.

```shell
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```
Brew Doctor é a ferramenta de auto-diagnóstico da Homebrew
```
brew doctor
```

Você será solicitado a instalar as *Ferramentas de Desenvolvedor de Linha de Comando* da *Apple*. **Confirme clicando em *Instalar***. Após a conclusão da instalação, continue instalando o *Homebrew* by **pressionando `Enter`** novamente.

## Segundo passo – Instalar o *Git*

**Copie e cole o seguinte** na janela do terminal e **pressione `Enter`**.

```shell
brew install git
```

**Você pode começar a usar o *Git*.**