Git: A Git-Game, for learning and fun
There is a nice git-game on github: https://github.com/hgarc014/git-game
There is a nice git-game on github: https://github.com/hgarc014/git-game
Git is an amazing tool. It's super useful for so many things. In this article I am going to describe how to create and apply patches using "git diff"..
Sometimes it is useful to compare to directories and display the differences. diff can do the trick for you
diff -r dir1/ dir2/
If you just want a overview about the differences then just use "brief":
diff --brief -r dir1/ dir2/
git can show you the differences too, and it can do it colorful if you want
git diff dir1/ dir2/