Aula 04 – Mini curso de Git

GIT – CONTROLE DE VERSÃO DISTRIBUÍDO

MINI CURSO DE GIT

Link do Meu Github

GIT

GIT

Voltar para página principal do blog

Todas as aulas desse curso

Aula 03                       Aula 05

Se gostarem do conteúdo dêem um joinha 👍 na página do Código Fluente no
Facebook

Esse é o link do código fluente no Pinterest

Meus links de afiliados:

Hostinger

Digital Ocean

One.com

  • PODEMOS AGORA SAIR DA BRANCH initial_setup E VOLTAR PARA A BRANCH master.
    • git checkout master
  • PRONTO, ESTAMOS NA BRANCH MASTER, VAMOS CONFERIR?
    • git branch
  • AGORA VAMOS TRAZER AS ALTERAÇÕES QUE FIZEMOS NA BRANCH initial_setup, PARA A BRANCH master, FAZENDO UM MERGE.
    • git merge initial_setup
  • VAMOS CRIAR UMA NOVA BRANCH PARA TRABALHAR NOSSOS ARQUIVOS README.mdtest_noel.pynoel.py e o .gitignore, QUE POR ENQUANTO ESTÃO VAZIOS.
    • git checkout -b initial_set_files
  • CRIAMOS E JÁ ENTRAMOS NA BRACH initial_set_files.
  • VAMOS INSERIR UMA BREVE DESCRIÇÃO NO README.md COM UM CONTEÚDO COMO:
    • Esse é um projeto meramente de teste, com a finalidade de estudo prático do uso do Git, uma ferramenta de controle de versão distribuído. Trata-se da resolução de um desafio simples, é o desafio 1759 do site https://www.urionlinejudge.com.br
    • This is a purely test project to a practical study purpose of using Git, a distributed source control system. This is the resolution of the challenge, the challenge 1759 of the site https://www.urionlinejudge.com.br
    • SALVE O README.md.
  • DÊ O COMANDO
    • git status
  • ADICIONAREMOS AS MUDANÇAS NO README.md, NA STAGING AREA
    • git add .
  • DÊ NOVAMENTE O COMANDO
    • git status
  • AGORA VAMOS CRIAR UM ARQUIVO SÓ PRA TESTAR O .gitignore
    • touch local_config
  • ESCREVA QUALQUER COISA DENTRO DELE
  • DÊ O COMANDO
    • git status
  • INSIRA DENTRO DO .gitignore O ARQUIVO local_config.
  • DÊ UM git status NOVAMENTE
  • VEJA QUE O ARQUIVO local_config FOI IGNORADO PELO GIT.
  • DÊ UM git add . PARA ADICIONAR A MUDANÇA FEITA NO .gitignore NA STAGING AREA.
  • FAÇA UM COMMIT
    • git commit -m "insert local_config in .gitignore file"
  • FAÇA O PUSH DAS ALTERAÇÕES PARA O GITHUB.
    • git push origin initial_set_files
  • ACESSE SEU GITHUB NA BRANCH initial_set_files E VEJA SE O ARQUIVO local_config SUMIU DO SEU GITHUB, OU SEJA, SE ELE FOI REALMENTE IGNORADO PELO GIT.
  • CASO NÃO TENHA SIDO IGNORADO, UTILIZE O COMANDO git rm --cached local_config E FAÇA O PROCEDIMENTO NOVAMENTE.
    • git add .
    • git commit -m "insert local_config in .gitignore file"
    • git push origin initial_set_files
  • AGORA DEVE TER FUNCIONADO.

Ficamos por aqui, até mais. 🙂

Aula 03                       Aula 05

Todas as aulas desse curso

Voltar para página principal do blog

Se gostarem do conteúdo dêem um joinha 👍 na página do Código Fluente no
Facebook

Esse é o link do código fluente no Pinterest

Meus links de afiliados:

Hostinger

Digital Ocean

One.com

Meu github:

https://github.com/toticavalcanti

Obrigado, até a próxima e bons estudos. 😉

Category: Curso de Git, DevOps
About The Author
-

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>