[GIT] How to apply Pull Request

I use "Fetch and Merge" approach to apply Pull request from a forked repo to main repo. What is actually done in this approach is to fetch changes from the forked repo in main repo working copy and merge the changes. Once changes from forked repo are merged in main repo working copy, push it to remote main repo as usual.

This process is achieved in these steps:

1- CD to main.git repo working directory
$ git checkout master

2- Add forked repo forked.git in remotes
$ git remote add <forked> <forked.git>


3- Fetch changes from forked.git
$ git fetch forked

4- Merge into master branch
$ git merge <forked>/<master>

5- Push the merged changes to main.git
$ git push origin master 

Scheduling Repeating Local Notifications using Alarm Manager

Learn about Scheduling Repeating Local Notifications using Alarm Manager in this post .