Skip to main content
grammar, removal of '...' in answer especially considering the possible confusion with it being git diff syntax, and usage of 'double/triple dot' as the explicit code samples (.. and ...) are enough
Source Link

One use case of git fetch is that the following will tell you about any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See git diff documentation regarding the double- .. and triple-dot ... syntax.

One use case of git fetch is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See git diff documentation regarding the double- .. and triple-dot ... syntax.

One use case of git fetch is that the following will tell you about any changes in the remote branch since your last pull so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See git diff documentation regarding .. and ... syntax.

Reword.
Source Link
Mateen Ulhaq
  • 28.1k
  • 22
  • 122
  • 157

One use case of git fetch is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See: https://git-scm.com/docs/git-diffgit diff documentation regarding the double- .. and triple-dot ... syntax in the diff command.

One use case of git fetch is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See: https://git-scm.com/docs/git-diff regarding double- and triple-dot syntax in the diff command

One use case of git fetch is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See git diff documentation regarding the double- .. and triple-dot ... syntax.

One use case of git fetch is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See: https://git-scm.com/docs/git-diff regarding double- and triple-dot syntax in the diff command

One use case of git fetch is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

One use case of git fetch is that the following will tell you any changes in the remote branch since your last pull... so you can check before doing an actual pull, which could change files in your current branch and working copy.

git fetch
git diff ...origin

See: https://git-scm.com/docs/git-diff regarding double- and triple-dot syntax in the diff command

... denotes ellipsis.
Source Link
cnu
  • 37.4k
  • 24
  • 67
  • 63
Loading
Source Link
mepster
  • 6.1k
  • 1
  • 18
  • 2
Loading