github - Git diff origin/master..master does not show in difference but there are difference -
i have pushed project github, not folders committed github. if git origin/master..master not show difference there difference many folders not committed github. doing wrong while git push -u origin master how correct situationenter image description here pfa..
git diff shows difference between 2 repository's commits. if have other files (git doesn't care folders) ensure they're committed: 
git add .  git commit -m "something meaningful"  git diff origin/master..master   if on git add . see files not tracked should be, adjust .gitignore file in local directory. 
Comments
Post a Comment