Git training repository
This repository contain some file just to train myself to get using git & to get start with Linux Kernel on Raspberry pi
Git commands : git pull := git fetch + git merge git fetch : to get remote repository in your local without merging git checkout : to see the state of the branch you're using git checkout <branch_name> : to change the branch into <branch_name> git checkout -b <branch_name> : to add a new branch