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 an
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:
>
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 w
>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 purpo
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
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 ,m
@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
backgro
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 on
t;> - 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
>
ubakary,
> 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
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 bash, not git.
> So instead of
>
> git commit -m Message!
>
>
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 e
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 bash, not git.
So instead of
git commit -m Message!
try
git commit -m "Message!"
(You will need the quotes anyway if your commit message contains multiple
words.)
On Fri, 29 Jan 2016 05:19:23 -0800 (PST)
Sandor Akarki wrote:
> I have a little thing to do what looked pretty simple up until
> today...
>
> There is a website on which there is a button. Push the button ->
> clone a repo -> copy a local file into the cloned repo -> commit ->
> push -> delete t
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.
>
>
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 my changes for review..
>
On Thu, May 22, 2014 at 4:23 PM, Valerio Pachera 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 readme.
On Wed, 5 Mar 2014 19:55:04 -0800 (PST)
dexter ietf wrote:
> what it means to git when i try to commit on the local folder.
> for example "git commit ." is there any real use case for this ?
Depends on how you're looking at it. A commit in Git is a snapshot of
the whole repository so it doesn't
On Mon, 18 Nov 2013 07:44:45 +0100
Nicolas Dermine 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
On 18 Nov 2013 07:20, "nanna" 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 --decorate=ful
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
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 wrote:
> Hi
>
> I would like to list out the commit comment given on github from command
> line.
>
> Is it possible to do that
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 ..." to unstage)
> #
> # modified: Infovis/vtkApplyColors.cxx
> # modified: Infovis/vtk
23 matches
Mail list logo