Reputation: 101
Is there a way to see a big-picture status in git? I'm new to git and end up losing files based on stashing them in the wrong directory or working on the wrong branch, and I'd like to find a command that gives me an overview of everything, regardless of where in the directory I am or which branch I currently have checked out. Does that exist? (I'm using bash)
Upvotes: 1
Views: 58
Reputation: 4085
Also some Git Client like SourceTree is very useful to see what is going on.
Friendly but will hide the most of the git commands from you. So a good combo can be use terminal to do things and in case of confusion or conflicts you can get some "help" from the Git Client.
Upvotes: 0
Reputation: 1031
Try with the default frontends of git
Upvotes: 1
Reputation: 58908
git log --all
(try --graph
and --decorate
for more info)git reflog
git branch --verbose
git remote --verbose
Upvotes: 1