[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 -

[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 --

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 > > > > 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 read. If

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 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 file,

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

2013-01-18 Thread Dale R. Worley
> From: lei yang > > 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 read. If you modify the git code, you can prevent "git config" from printing it, but you can't stop the

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 wrote: > On Sat, 19 Jan 2013 00:37:20 +0800 > lei yang 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 Konstantin Khomoutov
On Sat, 19 Jan 2013 00:37:20 +0800 lei yang 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] help, about git send email seting

2013-01-18 Thread Konstantin Khomoutov
On Fri, 18 Jan 2013 08:22:44 -0800 lei yang wrote: > When I use git send-email I aways get below confirmation info > > Who should the emails appear to be from? [Lei Yang > ] Emails will be sent from: Lei Yang > Message-ID to be used as In-Reply-To for the > first email? > > before, I don't get

[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 --

[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 ] Emails will be sent from: Lei Yang Message-ID to be used as In-Reply-To for the first email? before, I don't get this confirmation now I use I newly installed os to use new installe

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 d

[git-users] Moving commits from one branch to another (or: My hassles with git-rebase)

2013-01-18 Thread Stefan Schulze
Hi there, my team works on a project since some months using a central git-repository and the work isn't finished. Now our customer asked us to deliver our code to their svn after each sprint (every three weeks). In the last four or five days I tried a lot but I have lot's of trouble with thi

Re: [git-users] how to get a patch summary like below

2013-01-18 Thread Konstantin Khomoutov
On Fri, 18 Jan 2013 22:52:34 +0800 lei yang wrote: > is there a way to get below info? > [PATCH 1/3] kernel-yocto: remove unnecessary non-bare warning > > In the past working from a non-bare clone would cause problems, [...] > [PATCH 2/3] linux-yocto: normalize repository naming and SRC_URI >

[git-users] how to get a patch summary like below

2013-01-18 Thread lei yang
Hi is there a way to get below info? [PATCH 1/3] kernel-yocto: remove unnecessary non-bare warning In the past working from a non-bare clone would cause problems, due to branches not existing in the WORKDIR clone. This hasn't been true for some time, since the routines which convert remo

[git-users] Question about git request pull email

2013-01-18 Thread lei yang
Hi experts, I see below -- Updating guilt to allow git 1.8.x as a supported version. This version has no impact on other functionality within the scripts, so no other adjustments are necessary. This addresses [YOCTO #3275] Ch

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

2013-01-18 Thread Konstantin Khomoutov
On Fri, 18 Jan 2013 02:00:51 -0800 (PST) "Luis M. Alonso" wrote: > 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 You have just downloaded the Git's source tree. Or course, this action alone did nothing to

[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! --