[git-users] Gitignore

2011-12-02 Thread Flávio Alencar
Hi!! I have two questions: 1 - Do I have to configure the gitignore before running the first commit? 2 - I configured these parameters in the gitignore for the Visual Studio projets. Do you have another suggestions? [Oo]bj/ [Bb]in/ *.suo *.user /TestResults *.vspscc *.vssscc Thanks! *

[git-users] Re: Gitignore

2011-12-02 Thread Thomas Ferris Nicolaisen
Hi, 1. You can configure .gitignore whenever you like. If you commit files, and later ignore them, they will be treated as normal checked-in files, until you delete them (from then on the ignore will take effect). 2. There's a good starting point in the Visual Studio - GitExtensions plugin

Re: [git-users] Gitignore

2011-12-02 Thread Konstantin Khomoutov
On Fri, 2 Dec 2011 12:13:43 -0300 Flávio Alencar flavi...@gmail.com wrote: I have two questions: 1 - Do I have to configure the gitignore before running the first commit? No. It's just a way to hide certain files from certain commands operating on files (such as git-status or git-add).

[git-users] Re: delete branches

2011-12-02 Thread Thomas Ferris Nicolaisen
Hi Thorsten, Each user has a full clone of the origin repository. As it is distributed, each user will have all branches (even though they remote branches, they also fully exist in each clone. So user b can still do a git checkout origin/branch/test .. and keep working on that branch, push

Re: [git-users] Re: Gitignore

2011-12-02 Thread Flávio Alencar
Thank you Thomas! * Atenciosamente, Flávio Alencar ** *https://mail.sisgraph.com.br/exchweb/bin/redir.asp?URL=http://www.sisgraph.com.br/ 2011/12/2 Thomas Ferris Nicolaisen tfn...@gmail.com Hi, 1. You can configure .gitignore whenever you like. If you commit files, and later ignore