Reputation: 83
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
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