How to find the files last commited in git
git log --pretty=format: --name-only --since="350 days ago" | sort | uniq You can change the value 350 to any desired
git log --pretty=format: --name-only --since="350 days ago" | sort | uniq You can change the value 350 to any desired
Change to theĀ user that runs the jenkins jobs and run the command manually: git ls-remote -h git@bitbucket.org:person/projectmarket.git HEAD You will…
When you want to see details about your commits in a git repository you can type this git log –stat…