I have a project with some sql files with queries. Every developer increments the content of these files (they never remove content).
I need a git command to get all the new lines on all .sql files made by all developers from my last commit.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you need to get the most recent revisions to a remote repository, you can use
git fetch.To see differences between your version and the most recent version, try
git diff. To compare between a fetch and your version, trygit diff HEAD HEAD^.