1

So I'm new to Foundation and especially using the Yeti Launch application. Why is that if I make New Project with Yeti Launch I cannot make my own repo of it on git.

If I create the project via CLI and use "npm start" than i have permissions on git?

I guess what I'm asking is how/if it's possible to create a new project in Yeti and sync in on my git?

Colin Marshall
  • 2,142
  • 2
  • 21
  • 31
defawlt
  • 93
  • 1
  • 9

1 Answers1

4

This is because Yeti creates a clone of the template you choose from GitHub. Cloning points to the original repo, so you have to do a little extra setup to put the repo on your own GitHub account.

After creating a project from a template in Yeti, do the following:

  1. Create a new, empty repo on GitHub
  2. In terminal, cd to the directory of your project
  3. Run git remote rm origin to remove the remote you don't have access to
  4. Run git remote add origin https://github.com/your_username/name_of_repo.git (Replace your_username and name_of_repo with your info)
  5. Run git push -u origin master to push the local repo to GitHub
Colin Marshall
  • 2,142
  • 2
  • 21
  • 31