johnlane
johnlane
I have a function to do this: $ grep -qsPa "\x00GITCRYPT" $(git ls-tree -r master --name-only) It returns `0` if locked or `1` if unlocked. The subshell returns the list...
I just did a quick test and I found that it is much faster to just grep everything because `git crypt status -e` is too slow: $ time grep -qsPa...
Hi, well I stand a little corrected... I can write the files because they are mode 644. Files that are 600 are not writeable despite showing as owned by my...
Hi, just another little update, I took your `Dockerfile` and built a new image essentially the same but based on Arch Linux instead of Alpine. it works fine. The only...
I needed to do this and found this PR. Does exactly what I needed so another vote from me.
I've had this since 16th August, it worked for me on the 15th. I've started a thread on the Gitlab forum https://forum.gitlab.com/t/gitlab-login-cloudflare-503/73759
A workaround is to change the user agent ``` qutebrowser --temp-basedir ':set content.headers.user_agent "cloudflare 503 workaround"' https://gitlab.com/users/sign-in ``` tested with gitlab.com and spamhaus.org. I made up the ua string -...
Just wanted to share.... the workaround of changing the user agent is only necessary for the Gitlab sign-in page. Once signed in it seems to work fine with the default...
I was looking for this also. Some background.... I have the script in a Docker container that I run from Gitlab CI. The Dockerfile installs it to `/usr/bin` so it's...
**TL;DR** for others coming here, this works in a new vanilla `markdown int foo` site: * Create `source/stylesheets/highlighting.css.erb` as per the [instructions](https://github.com/middleman/middleman-syntax#css). * Add to `source/stylesheets/site.css.scss` @import 'highlighting.css' I've only...