Skip to content

Instantly share code, notes, and snippets.

View felipefbs's full-sized avatar

Felipe Ferreira felipefbs

  • João Pessoa - BR
View GitHub Profile
@felipefbs
felipefbs / git.md
Created April 26, 2020 11:26 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

@felipefbs
felipefbs / goInstalation.sh
Last active October 4, 2021 18:13
Thais script helps to install Go version 1.17.1 in your machine. Remember to run with SUDO.
#!/usr/bin/env bash
# This script works only with go 1.17.1 version
GO_FILE=go1.17.1.linux-amd64.tar.gz
wget https://dl.google.com/go/${GO_FILE}
sudo tar -C /usr/local -xzf ${GO_FILE}
mkdir $HOME/go $HOME/go/src $HOME/go/pkg $HOME/go/bin
@felipefbs
felipefbs / README.md
Created May 9, 2020 17:31 — forked from henriquepw/README.md
my-readme-template

Your icon here

Your cool project

@felipefbs
felipefbs / expressInit.md
Created July 25, 2021 18:13
passo a passo de um projeto com express
  • Crie a pasta do projeto

  • Inicialize o git.

git init
  • Inicialize o npm.