https://github.com/yoast/archive
Yoast repository archive
https://github.com/yoast/archive
Last synced: about 2 months ago
JSON representation
Yoast repository archive
- Host: GitHub
- URL: https://github.com/yoast/archive
- Owner: Yoast
- Created: 2017-03-14T13:13:31.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T10:53:50.000Z (about 2 years ago)
- Last Synced: 2025-04-21T09:06:04.518Z (about 1 year ago)
- Language: SCSS
- Size: 63.5 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Yoast Repository Archive
This repository is used as a public archive of abandoned Yoast projects.
To add more repositories to the archive, simply do the following:
```SH
git subtree add --prefix={{directory}} https://github.com/yoast/{{repository}}.git master
```
Or to add a directory from another repository:
```SH
# Link and fetch the repository you want the directory from
git remote add project https://github.com/yoast/{{repository}}.git
git fetch project
# Split the directory, including history, to a temporary branch
git branch project_main project/main
git checkout -f project_main
git subtree split --prefix=path_of_interest_in_project -b temp_branch
# Add the temporary branch to the archive in a specific directory
git checkout -f main
git subtree add --prefix={{directory}} temp_branch
git push
```