I would like to know if my local repo is up to date (and if not, ideally, I would like to see the changes).
How could I check this without doing git fetch or git pull ?
|
feedback
|
|
Try
| |||||
feedback
|
|
Not really - but I don't see how | |||
|
feedback
|
|
This is impossible. How can you know whether or not the repository is "up-to-date" without going to the remote repository to see what "up-to-date" even means? | |||
|
feedback
|
|
You must run This command only updates your remote tracking branches and will not affect your worktree until you call To see the difference between your local branch and your remote tracking branch once you've fetched you can use git diff or git cherry as explained here. | ||||
|
feedback
|