Danny P
Danny P

Reputation: 83

How do I keep my starter seed project up to date with the main repo?

If I were to use the below seed project as a basis for an Angular 2 app, how would I keep my own version of the app updated with the latest bug fixes and improvements from the seed project?

Is such a thing even possible?

Here is the seed project I plan to use: https://github.com/mgechev/angular-seed

Upvotes: 1

Views: 54

Answers (1)

Maximilian Riegler
Maximilian Riegler

Reputation: 23506

You can do that with

git pull origin master

if you cloned the repository with git clone https://github.com/mgechev/angular-seed.


Otherwise you need to add that repository as a remote to your existing one:

git remote add upstream https://github.com/mgechev/angular-seed

Then you can pull changes with:

git pull upstream master

Upvotes: 3

Related Questions