Feb
GIT – List of changed files between master and branch
While migrating all my repos to GIT i found myself discovering new ways of work with git, i’ll try to past them on this blog as own notes.
Need: A list of changed files on my <branch> comparing to master
git branch <your branch> // Switch to branch git pull origin master // Sync master changes inside your branch git diff --name-only master <branch> // List of the changed files
