Re: [git-users] Re: [Bug] Git reports SSL error though this is not the cause

2015-10-22 Thread Michael Osipov

Am 2015-10-20 um 22:23 schrieb Philip Oakley:

- Original Message - From: Michael Osipov To: Git for human
beings Sent: Tuesday, October 20, 2015 9:08 PM Subject: [git-users]
Re: [Bug] Git reports SSL error though this is not the cause


Anyone? Is this the wrong place for bugreports?


-- "Yes", The ideal places for bug reports are:

a) for Git-for-Windows use the
https://github.com/git-for-windows/git/issues tracker. But please do
include as much background info as possible for an MVCE, that allows
the maintainers to repeat the bug from scractch (which OS version,
Git version, options selected, other things happening, etc,)

b) for Linux et al, use the g...@vger.kernel.org list - but it must be
pure plain text. cc yourself if needed.

Philip

[1] MVCE http://stackoverflow.com/help/mcve



Hi Philip,

thank you very much for your reply. It is -- indeed the wrong list. I 
will repost to the proper one next week.


Michael

--
You received this message because you are subscribed to the Google Groups "Git for 
human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Integration between GIT and other systems

2015-10-22 Thread Konstantin Khomoutov
On Thu, 22 Oct 2015 06:27:49 -0700 (PDT)
Fabiano Amorim Oliveira  wrote:

> I need to know if it's possible to have a polling mechanism that
> checks what event occurred, then push a message to another system -
> such as third party systems. Or the source control tool push the
> message itself to the other system 

Yes.  Please read up on Git hooks.
Start with the githooks(1) manual page.

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] Integration between GIT and other systems

2015-10-22 Thread Fabiano Amorim Oliveira
I need to know if it's possible to have a polling mechanism that checks 
what event occurred, then push a message to another system - such as third 
party systems. Or the source control tool push the message itself to the 
other system 

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Info about git commit

2015-10-22 Thread Konstantin Khomoutov
On Thu, 22 Oct 2015 08:03:52 -0700 (PDT)
vijay...@dssd.com wrote:

> I am very new to git; This question may have been asked before, if
> so, sorry to post it again..\
> 
> - Given a git commit, how to get all information about that commit,
> like who made that commit; author details; time of commit etc

All this information is available via the properties of the Commit
object [1, 2].

> - How to get all the commits done in past half hour or 1 hour time..

repo.iter_commits()

On how to specify the range of commits, read the gitrevisions(7) manual
page (run `git help revisions`).  I'd say you would need something like
"HEAD@{30 minutes ago}" and "HEAD@{1 hour ago}".

> I am using git-python api to connect to the Git repository and get
> the info... any suggestion or pointer on how to proceed.

Did you really try to perform at least some minimal research on your
topic before asking?  I have rather minimal experience with Python and
zero experience with git-python, and still finding the docs for it and
reading them took some 5 minutes of my time.

1. 
http://gitpython.readthedocs.org/en/stable/reference.html#module-git.objects.commit
2. http://gitpython.readthedocs.org/en/stable/tutorial.html#the-commit-object
3. http://gitpython.readthedocs.org/en/stable/reference.html#module-git.repo.fun

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.