Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit

Permalink
Set credential store config to local
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiddelkoop committed Jun 4, 2024
1 parent 5e794a6 commit f009a8d
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Create new git repository (in a new window):
* Click the "+" in the upper right and select "+ New Repository"
* Repository Name: skc-your_name
* Make repository private (Visibility): check the checkbox
* Verify the repository is public (Visibility): checkbox is unchecked (**NOTE:** your project is public!)
* Initialize Repository: check the checkbox
* Click "Create Repository"
* Navigate to your repo:
Expand All @@ -48,6 +48,7 @@ git config --global user.email "first_last@skc.edu"
git config --global credential.helper cache
git config --global core.editor nano
git config --global --list
git config --list
```

### Setup New Project
Expand Down Expand Up @@ -123,11 +124,6 @@ git config --global --list
* Click "Commit" under the *Git menu*
* There should be no files in the "Staged" list on the left.

### Customize

* Move Terminal and Console pane to the right
* "View" -> Panes -> Console on Right

## Quit Environment

To safely close and stop your environment:
Expand Down Expand Up @@ -231,14 +227,15 @@ To use a personal access token in Gitea:
* Click "Generate Token"
* Your token is in **BLUE** box at the top of the page and is a long string of digits and numbers.
* This is a password - it should be treated as such (use a password manager to store it)
* **DO NOT CLOSE THIS TAB** - you will need the token later
* **DO NOT CLOSE THIS TAB** - you will need the token later.

You should either save your personal access token in a password manager (preferred) or configure Git to store the token. **NOTE:** Git stores the personal access token in plain tex. Another method to authenticate is to use "ssh keys".

To enable storing the personal access token on disk in plain text for all repositories:
To enable storing the personal access token on disk in plain text for a repository:

```bash
git config --global credential.helper store
git config credential.helper store
git config --list
```

### R Package Configuration
Expand Down

0 comments on commit f009a8d

Please sign in to comment.