Re: [git-users] `$ git commit --fixup=xxx -e` doesn't open editor anymore

2021-08-16 Thread Konstantin Khomoutov
On Mon, Aug 16, 2021 at 12:49:02AM -0700, Sergey Solovyev wrote: > OK, we found the regression > point > https://github.com/git/git/commit/494d314a0526a8bee9f8af7a6e6b74b66043c9fa > and my co-worker is making a fix for that. That's cool! You can then search [1] to see whether it was reported

Re: [git-users] `$ git commit --fixup=xxx -e` doesn't open editor anymore

2021-08-16 Thread Sergey Solovyev
OK, we found the regression point https://github.com/git/git/commit/494d314a0526a8bee9f8af7a6e6b74b66043c9fa and my co-worker is making a fix for that. On Sunday, August 15, 2021 at 2:32:39 PM UTC+2 Konstantin Khomoutov wrote: > On Wed, Aug 11, 2021 at 03:05:09AM -0700, Sergey Solovyev wrote: >

Re: [git-users] `$ git commit --fixup=xxx -e` doesn't open editor anymore

2021-08-15 Thread Konstantin Khomoutov
On Wed, Aug 11, 2021 at 03:05:09AM -0700, Sergey Solovyev wrote: > Previously `$ git commit --fixup=xxx -e` would open an editor before > committing the change. It should still be the case according to the command > documentation: > * -e, --edit* > * The message taken from file

Re: [git-users] git commit message template plugin

2019-12-20 Thread Tim Schofield
>From the comments at the beginning of the prepare-commit-msg.sample script: # An example hook script to prepare the commit log message. # Called by "git commit" with the name of the file that has the # commit message, followed by the description of the commit # message's source. The hook's

Re: [git-users] git commit message template plugin

2019-12-19 Thread Python Prog
i am aware of that hook ,prepare-commit-msg hook runs in the background on a "git commit" and does some checks,I am looking for a UI to pop-up (via plugin) on git commit so that user can the requested commit message fields which can then be saved as a commit message,anyone know how this can be

Re: [git-users] git commit message template plugin

2019-12-19 Thread Tim Schofield
I think it is the prepare-commit-msg hook that you require. Thanks Tim On Thu, 19 Dec 2019 at 00:31, Python Prog wrote: > > @Philip - I looked at https://githooks.com/ before but not clear if these > will provide the functionality am looking for,I am looking for something like > a UI popup

Re: [git-users] git commit message template plugin

2019-12-18 Thread Python Prog
@Philip - I looked at https://githooks.com/ before but not clear if these will provide the functionality am looking for,I am looking for something like a UI popup ,may be after a "git commit" event where folks can enter the commit message info.All these hooks seems like they run in the

Re: [git-users] git commit message template plugin

2019-12-18 Thread Philip Oakley
Look up the 'hooks' which are scripts that are run on various events happening, such as a commit, etc. I believe there will be a suitable hook that can be set. Philip On 18/12/2019 23:42, Python Prog wrote: > Hello > > I am looking to develop a commit message plugin where developers > working

Re: [git-users] Git commit

2017-02-01 Thread Boubakary Wadjiri Mohammadou
; Is your 'commit' command an alias? >> >> Philip >> >> - Original Message - >> *From:* Gergely Polonkai <gerg...@polonkai.eu> >> *To:* Git for human beings <git-users@googlegroups.com> >> *Sent:* Wednesday, February 01, 2017 8:46 PM >>

Re: [git-users] Git commit

2017-02-01 Thread Gergely Polonkai
kley <philipoak...@iee.org> > wrote: > > Boubakary, > Is your 'commit' command an alias? > > Philip > > - Original Message - > *From:* Gergely Polonkai <gerg...@polonkai.eu> > *To:* Git for human beings <git-users@googlegroups.com> > *Sent:* Wed

Re: [git-users] Git commit

2017-02-01 Thread Boubakary Wadjiri Mohammadou
To:* Git for human beings <git-users@googlegroups.com> > *Sent:* Wednesday, February 01, 2017 8:46 PM > *Subject:* Re: [git-users] Git commit > > My guess is, you provide a commit message that contains an exclamation > mark, and you don’t quote it. The error message is giwen by

Re: [git-users] Git commit

2017-02-01 Thread Philip Oakley
Boubakary, Is your 'commit' command an alias? Philip - Original Message - From: Gergely Polonkai To: Git for human beings Sent: Wednesday, February 01, 2017 8:46 PM Subject: Re: [git-users] Git commit My guess is, you provide a commit message that contains an exclamation

Re: [git-users] git commit , git review, want to submit a patch not a new commit

2015-10-13 Thread Magnus Therning
On Tue, Oct 13, 2015 at 02:11:30AM -0700, nmh wrote: > I cloned a git repository. > I made some changes. I could see changes in git diff all okay. > I did git commit -a and git review. > > I got one commit id and could see my patch submitted in gerrit. > >

Re: [git-users] Git commit was done twice and then git review - does not work

2015-09-29 Thread Konstantin Khomoutov
On Tue, 29 Sep 2015 05:31:07 -0700 (PDT) nmh wrote: > I cloned a git repository, made some changes.. i did git commit .. > forund that changes are not complete , made some more changes > to the same files, and now i did git commit again. > Now i did git review to submit

Re: [git-users] git commit -a ... I changed my mind

2014-05-22 Thread Magnus Therning
On Thu, May 22, 2014 at 4:23 PM, Valerio Pachera siri...@gmail.com wrote: Hi, I'm a git beginner. I have a github account. I created an empty repository and cloned it on my laptop. I added 2 files then git add file1 file2 git commit -s git push Everything is fine. I made changed to the

Re: [git-users] Git commit comment

2013-11-18 Thread Konstantin Khomoutov
On Mon, 18 Nov 2013 07:44:45 +0100 Nicolas Dermine nicolas.derm...@gmail.com wrote: I have done git pull. and again ran the below command. But still it wasn't show the comment on the commit. (on Github box provided below each commit) Through github i able to see it. git log

Re: [git-users] Git commit comment

2013-11-17 Thread nanna
I have done git pull. and again ran the below command. But still it wasn't show the comment on the commit. (on Github box provided below each commit) Through github i able to see it. git log --since=2013-11-14T12:00:00 --until=today --decorate=full --stat --branches=* --remotes=* --date=local

Re: [git-users] Git commit comment

2013-11-17 Thread Nicolas Dermine
On 18 Nov 2013 07:20, nanna nanna.ku...@gmail.com wrote: I have done git pull. and again ran the below command. But still it wasn't show the comment on the commit. (on Github box provided below each commit) Through github i able to see it. git log --since=2013-11-14T12:00:00 --until=today

Re: [git-users] Git commit comment

2013-11-15 Thread Gergely Polonkai
My first guess is that you haven't updated your local repository from GitHub. Have you issued git pull before viewing your local log? On 15 November 2013 11:28, nanna nanna.ku...@gmail.com wrote: Hi I would like to list out the commit comment given on github from command line. Is it

Re: [git-users] git commit not doing anything

2010-08-30 Thread iñigo medina
Hi David, did you try with git commit -a? iñ I have some staged files: [dor...@localhost VTK-GraphColors]$ git status # On branch VTK-GraphColors # Changes to be committed: # (use git reset HEAD file... to unstage) # # modified: Infovis/vtkApplyColors.cxx # modified: