Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Writer's Guide Updates 2: Electric Boogaloo #765

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions home/modules/contribute/pages/test-site.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,17 @@ If you left some remote repositories in your local playbook file, make sure you
Keep the PAT somewhere where you can copy it again later.
+
Make sure you also authorize your token to work with SAML single sign-on.
. Open a Git Bash window.
. Open a terminal window.
+
NOTE: If you're on Windows, you must do the following steps with Git Bash, not any other terminal program.
You should have automatically installed Git Bash when you installed Git on your computer.
. Paste the following command:
+
[source, console]
----
git config --global credential.helper store && \
git ls-remote -h https://github.com/couchbase/couchbase-operator > /dev/null && \
# Set the variable to the appropriate URL for the repository that you want to connect to for your build.
git ls-remote -h $GITHUB_REPO_URL > /dev/null && \
git config --global --remove-section credential
----
. Paste your PAT after the first prompt, then hit kbd:[Enter] twice.
Expand Down