Re: [git-users] GIT on windows ...

2009-12-14 Thread Marcello Henrique
This is a option [0].

[0] http://code.google.com/p/msysgit/

On Mon, Dec 14, 2009 at 13:27, Michael P. Soulier
msoul...@digitaltorque.ca wrote:
 On 13/12/09 Mark Rosenberg said:

 There appear to be several options with respect to GIT clients, UIs,
 etc for use on the Windows XP platform. As someone about to start
 using GIT, I'd appreciate learning from this form which of the various
 options are best (and worst).

 Personally the only one that worked for me was Cygwin.

 Mike
 --
 Michael P. Soulier msoul...@digitaltorque.ca
 Any intelligent fool can make things bigger and more complex... It
 takes a touch of genius - and a lot of courage to move in the opposite
 direction. --Albert Einstein




-- 
Marcello Henrique
Associação Software Livre de Goiás (www.aslgo.org.br)
Cercomp - UFG (www.cercomp.ufg.br)

--

You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




[git-users] Merge log about same user.

2010-12-10 Thread Marcello Henrique
Hello,

Hello,

I have a git repository, I commited by diferent accounts just that
same people. How merge historic into logs?

Thanks in advance.
-- 
Marcello Henrique
Blog - http://faraohh.wordpress.com
Associação Software Livre de Goiás (www.aslgo.org.br)
Cercomp - UFG (www.cercomp.ufg.br)

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.



Re: [git-users] Re: Merge log about same user.

2010-12-10 Thread Marcello Henrique
Hi Konstantin,

Exactly what I needed, I'll read the manual reference that you indicated.

Thanks very much.

On Fri, Dec 10, 2010 at 15:34, Konstantin Khomoutov khomou...@gmail.com wrote:
 Marcello Henrique wrote:
 The first option, commits made by different committers which are, in
 fact, the same person.
 Then you should probably use a properly instrumented call to
 `git filter-branch --commit-filter`
 According to the git-filter-branch manual [1], it exports a set of
 environment variables GIT_AUTHOR_* and GIT_COMMIT_* whose values can
 be changed in the filter code to affect the recorded commit.

 I think that should be something like:

 $ git filter-branch --commit-filter '
  if [ $GIT_AUTHOR_NAME = Marcello Henrique ]; then
    GIT_AUTHOR_NAME=John Random Hacker;
    GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME;
    GIT_AUTHOR_EMAIL=bi...@microsoft.com;
    GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL;
  fi' HEAD

 May be the filter code should also `export` the changed variables -- I
 don't really know.

 1. http://www.kernel.org/pub/software/scm/git/docs/git-filter-branch.html

 --
 You received this message because you are subscribed to the Google Groups 
 Git for human beings group.
 To post to this group, send email to git-us...@googlegroups.com.
 To unsubscribe from this group, send email to 
 git-users+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/git-users?hl=en.





-- 
Marcello Henrique
Blog - http://faraohh.wordpress.com
Associação Software Livre de Goiás (www.aslgo.org.br)
Cercomp - UFG (www.cercomp.ufg.br)

-- 
You received this message because you are subscribed to the Google Groups Git 
for human beings group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.