[git-users] [Ubuntu 12.04 LTS] [git version 1.7.9.5] how to update to 1.8.1.1?

2013-01-18 Thread Luis M. Alonso
In [Ubuntu 12.04 LTS] the current version of git is 1.7.9.5 After git clone https://github.com/git/git.git git version shows 1.7.9.5 How to update to 1.8...? Thanks! --

Re: [git-users] Rebasing large commit-set including merges

2013-01-18 Thread Stefan Schulze
Hi Michael, thank you for your answer. After playing with git grafts and git filter-tags according to your suggestion, it causes some different issues. I think, I gave to less information about the situation, so I created a complete new thread (the root of the problem seems to be something

[git-users] help, about git send email seting

2013-01-18 Thread lei yang
When I use git send-email I aways get below confirmation info Who should the emails appear to be from? [Lei Yang yanglei.f...@gmail.com] Emails will be sent from: Lei Yang yanglei.f...@gmail.com Message-ID to be used as In-Reply-To for the first email? before, I don't get this confirmation now I

[git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread lei yang
git config --global sendemail.smtppass this will display password in .git config can we avoid this ? lei --

Re: [git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread Konstantin Khomoutov
On Sat, 19 Jan 2013 00:37:20 +0800 lei yang yanglei.f...@gmail.com wrote: git config --global sendemail.smtppass this will display password in .git config can we avoid this ? Yes, do not keep passwords in your configuration files. --

Re: [git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread lei yang
On Sat, Jan 19, 2013 at 1:00 AM, Konstantin Khomoutov flatw...@users.sourceforge.net wrote: On Sat, 19 Jan 2013 00:37:20 +0800 lei yang yanglei.f...@gmail.com wrote: git config --global sendemail.smtppass this will display password in .git config can we avoid this ? Yes, do not keep

Re: [git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread Konstantin Khomoutov
On Sat, 19 Jan 2013 01:08:47 +0800 lei yang yanglei.f...@gmail.com wrote: git config --global sendemail.smtppass this will display password in .git config can we avoid this ? Yes, do not keep passwords in your configuration files. but if we don't put it in the configuration

Re: [git-users] it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread Konstantin Khomoutov
On Fri, 18 Jan 2013 12:18:00 -0500 wor...@alum.mit.edu (Dale R. Worley) wrote: From: lei yang yanglei.f...@gmail.com git config --global sendemail.smtppass this will display password in .git config can we avoid this ? The value is in a configuration file which the user can

[git-users] Does git request-pull and git send-email to combine ?

2013-01-18 Thread lei yang
Hi experts I want send a pull request following the patches email, is it possible? Lei --

[git-users] Re: it's not safe to set password wtih git config, can we not set it,

2013-01-18 Thread Alexandru Pătrănescu
This is what we use at work: git config --global credential.helper 'cache --timeout 36000' won't ask for your poassword for 10 hours. You can read more about it here: http://www.kernel.org/pub/software/scm/git/docs/git-credential-cache.html If it's not working on windows you can use: git config