Without cloning the repository, Is it possible to get the following from command-line/git bash,
- List of branches in the repository
- git logs of specific branch
Without cloning the repository, Is it possible to get the following from command-line/git bash,
I'm not sure if its possible to get logs without cloning, but once you've cloned its as easy as something like git log origin/dev
where origin
is the remote repo and dev
is the branch in question to get logs without checking out the branch.
There is another similar question that relies on running ssh commands remotely on the repo's server. https://stackoverflow.com/a/1178586/563381