# Documenter keeps asking me for GitHub credentials

**URL:** https://discourse.julialang.org/t/documenter-keeps-asking-me-for-github-credentials/91509
**Category:** General Usage
**Tags:** documenter
**Created:** [December 10, 2022, 2:16pm UTC](https://discourse.julialang.org/t/documenter-keeps-asking-me-for-github-credentials/91509 "2022-12-10T14:16:08Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![dgagnon](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/dgagnon/32/45466_2.png) [@dgagnon](https://discourse.julialang.org/u/dgagnon)
#### Post date: [December 10, 2022, 2:16pm UTC](https://discourse.julialang.org/t/documenter-keeps-asking-me-for-github-credentials/91509/1 "2022-12-10T14:16:09Z")

</div>

Why do I get a GitHub prompt every time I run documenter?  
Even if I simply open make.jl I get the request.  
Then I get a second window asking again for my github login and a third asking again for my password.  
I can enter valid information or simply kill all windows, either ways it works. But I always get the message

```julia
Warning: Unable to determine HTML(edit_link = ...) from ...
Calling `git remote` failed with an exception....

```

I am working in Windows with VSCode.

 ![image](https://global.discourse-cdn.com/julialang/original/3X/d/0/d00cb2280c09bfd39614add65f36440bfb4a3eb7.png)

![image](https://global.discourse-cdn.com/julialang/original/3X/1/8/1898b6c49fa6958caa5566d648eaa7157e4a3458.png)

---

<div class="post-metadata">

### Author: ![fredrikekre](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/fredrikekre/32/1688_2.png) [@fredrikekre](https://discourse.julialang.org/u/fredrikekre)
#### Post date: [December 10, 2022, 10:21pm UTC](https://discourse.julialang.org/t/documenter-keeps-asking-me-for-github-credentials/91509/2 "2022-12-10T22:21:35Z")

</div>

This should have been fixed by [Documenter.jl#1797](https://github.com/JuliaDocs/Documenter.jl/pull/1797) and [Documenter.jl#1821](https://github.com/JuliaDocs/Documenter.jl/pull/1821). What version of Documenter are you using? An easy fix is to guard the call to `deploydocs` behind a check, for example only run it if `get(ENV, "CI", nothing) == "true"`.

---

<div class="post-metadata">

### Author: ![dgagnon](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/dgagnon/32/45466_2.png) [@dgagnon](https://discourse.julialang.org/u/dgagnon)
#### Post date: [December 12, 2022, 10:50am UTC](https://discourse.julialang.org/t/documenter-keeps-asking-me-for-github-credentials/91509/3 "2022-12-12T10:50:47Z")

</div>

Fixed indeed!  
Thanks
