git - How do i get commit logs of a remote located branch? -


without cloning repository, possible following command-line/git bash,

  1. list of branches in repository
  2. git logs of specific branch

as far aware way connect server using ssh , running git log on server

ssh remote@host "cd repo && git log" 

fo windows u can use putty


Comments