asciidoctor / jekyll-asciidoc-quickstart

A template project for creating AsciiDoc-based websites using Jekyll.
https://asciidoctor.github.io/jekyll-asciidoc-quickstart/
MIT License
119 stars 159 forks source link

Fix to allow publishing from jekyll #24

Closed johncarl81 closed 7 years ago

johncarl81 commented 7 years ago

Fixes https://github.com/asciidoctor/jekyll-asciidoc-quickstart/issues/23

johncarl81 commented 7 years ago

@mojavelinux or someone from the team, can you review?

mojavelinux commented 7 years ago

The intent to set this field looks fine to me. I'm just not sure about this default. jekyll.com isn't a real site.

Perhaps:

jekyllbot <jekyllbot@jekyllrb.com>

That's the bot jekyll uses to publish their own site. we could also consider something like:

Jekyll Publisher <jekyll@example.com>

wdyt?

johncarl81 commented 7 years ago

I like the example.com suggestion... updated PR.

mojavelinux commented 7 years ago

:+1: to merging. I believe you have access to do so, correct?

sushant147 commented 5 years ago

I am having the same problem. Is there any workaround for this? I am working on Azure DevOps where i am trying to pull from Git and that where i get this issue

image

sushant147 commented 5 years ago

With help from this https://bbs.archlinux.org/viewtopic.php?id=163624 I was able to resolve the problem.

In my Azure DevOps i added a new task for passing on the user email and name as below

git config --global user.email "you@example.com" (i used the email which was linked to GIT) git config --global user.name "Your Name"

And the next step in Azure DevOps was my original task of PULL as shown in screen grab in my issue.