This repository is designed to be set up in accordance with https://github.com/INN/docs/blob/master/projects/largo/umbrella-setup.md
| Prompt | Text to enter |
|---|---|
| Name of new site directory: | publicsource |
| Domain to use (leave blank for largo-umbrella.dev): | publicsource.test |
| Install as multisite? (y/N): | n |
cdto the directorypublicsource/in your VVV setupgit clone git@github.com:INN/umbrella-publicsource.git- Copy the contents of the new directory
umbrella-publicsource/intohtdocs/, including all hidden files whose names start with.periods.
Where this repository was once INN/publicsource-umbrella on Github, it is now INN/umbrella-publicsource. If you had previously cloned this repository, you will need to navigate to this directory on your computer and take the following steps:
- Run
git remote -vto list remotes. Make a note of the name that matchesgit@github.com:INN/publicsource-umbrella.git. It's probablyorigin. - Run
git remote set-url origin git@github.com:INN/umbrella-publicsource.gitwhereoriginis the name of the remote you saw in the previous step. - Run
git fetch origin - If you have any local working branches that track remote branches, you may need to:
- check out the local branch:
git checkout foo - update the local branch's upstream:
git branch -u origin/foo foo
- check out the local branch: