How can I view any local commits I've made, that haven't yet been pushed to the remote repository? Occasionally, git status will print out that my branch is X commits ahead of origin/master, but not always. Is this a bug with my install of Git, or am I missing something?
You can also view the diff using the same syntax
|
|||||||||||||||
|
|
If you want to see all commits on all branches that aren't pushed yet, you might be looking for something like this:
And if you only want to see the most recent commit on each branch, and the branch names, this:
|
|||||||||||
|
|
You can show all commits that you have locally but not upstream with
|
||||
|
You can do this with
Assuming that |
|||||
|
|
Handy alias for looking for unpushed commits in current branch:
What this basically does:
but also determines current branch name. |
|||||
|
|
I use the following alias to get just the list of files (and the status) that have been committed but haven't been pushed (for the current branch)
then just do:
|
|||
|
|
|
It is not a bug. What you probably seeing is git status after a failed auto-merge where the changes from the remote are fetched but not yet merged. To see the commits between local repo and remote do this:
This is 100% safe and will not mock up your working copy. If there were changes You can now show log of commits that are in the remote but not in the local:
|
|||
|
|
|
I believe the most typical way of doing this is to run something like:
However, I personally prefer running:
which shows the commits from all branches which are not merged upstream, plus the last commit in upstream (which shows up as a root node for all the other commits). I use it so often that I have created alias
|
|||
|
|
|
There is tool named unpushed that scans all Git, Mercurial and Subversion repos in specified working directory and shows list of ucommited files and unpushed commits. Installation is simple under Linux:
or
to install system-wide. Usage is simple too:
See |
||||
|
|
Assuming your branch is set up to track the origin, then that should show you the differences.
Will give you a summary of the commits. |
|||
|
|
|
I suggest you go see the script https://github.com/badele/gitcheck, i have coded this script for check in one pass all your git repositories, and it show who has not commited and who has not pushed/pulled. Here a sample result |
|||
|
|
