Skip to content

Instantly share code, notes, and snippets.

Merging a branch with anothor branch of an other source repository

# merging A/master with B/master
git remote add -f B path/to/B.git
git remote update
git merge B/master
@skyler-cs
skyler-cs / Troubleshooting.angular.md
Created September 12, 2018 00:23
Problems that I have faced, and how to solve them
@skyler-cs
skyler-cs / Keypoints.Angular.md
Last active September 12, 2018 02:20
I have summarized that I have studied Angular as a framework for developing SPA (Single Page Application) and Front-end of services

Angular Keypoints

App Module

  • bootstrap ( main -> app.module )
    • for bootstrapping
    • only root module can have this property
  • imports ( app.module )
    • modules and components
    • component tree will be open