Category Archives: GIT

Windows reconhecendo git como comando interno

  • Go to Control Panel\System and Security\System
  • Click on Advanced System Settings on the left which opens System Properties.
  • Click on the Advanced Tab
  • Click on the Environment Variables button at the bottom of the dialog box.
  • Edit the System Variable called PATH.
  • Append these two paths to the list of existing paths already present in the system variable. The tricky part was two paths were required. These paths may vary for your PC. ;C:\msysgit\bin\;C:\msysgit\mingw\bin\
  • Close the CMD prompt window if it is open already. CMD needs to restart to get the updated Path variable.
  • Try typing git in the command line, you should see a list of the git commands scroll down the screen.

Font:http://stackoverflow.com/questions/11000869/command-line-git-on-windows

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/