Tag Archives: git

Problemas com seu .gitignore? Ele não funciona?

Então. Já se deparou com esse problema catastrófico ao tentar ignorar um arquivo em seu projeto utilizando o .gitignore? Tenho certeza que muita gente também tem esse problema. Então, pesquisando com uma certa paciência no Google, encontrei um blog americano falando sobre isso. A solução é muito mais simples do que todos nós podemos imaginar:

$ git rm -r --cached .
$ git add .

FONTE:http://www.woompa.blog.br/2011/07/13/problemas-com-seu-gitignore-ele-nao-funciona/

O Caminho Certo github pra não esquecer mais!!

Projeto exemplo “getna”;

Esses comandos foram feitos no repositório de local para um branch chamado working:

P1-$ git clone git://github.com/LuizCarvalho/getna.git
P2-$ cd getna
P3-$ git branch --track master origin/master
P4-$ git branch working master
P5-$ git checkout working
P6-$ git remote add working git@github.com:LuizCarvalho/getna.git
P7-$ git fetch working
P8-$ git push working working:refs/heads/working
P9-$ git config branch.working.remote working
P10-$ git config branch.working.merge refs/heads/working

Continue reading O Caminho Certo github pra não esquecer mais!!