Using git reflog
, a user can only access his local reflog information?
How can one see the sha1 of a desired commit from a remote repository?
If you want the SHA1 of a particular branch, you could try
git ls-remote <URL> <branch name>
or, if the branch name pattern is ambiguous and you want more control, maybe something like:
git ls-remote <URL> | grep refs/heads/<branch name>
or something like that. It also works for tags, but it looks like not much else.
I know this is an old question, but I needed to branch from a particular commit and needed to know the SHA of that commit in order to do so. After finding out how to do it from a GUI(SourceTree) I also found out how to do it from the command line. Here are the steps.
Using the command line
git log
Using SourceTree 1. Find the commit that you're looking for 2. Right click on it 3. Select "Copy SHA to Clipboard"
Git reflog is a history of sha1s you had checked out. This is true for whatever repository you're in. If delete your repository and clone it again, you will have lost that history.
The second question doesn't make sense. I'm guessing that you want to
git fetch
and then browse what is on the remote that you didn't merge yet. You would do that withgit log master..origin/master
to see what the remote master has that you don't.