How to access a GIT server log without a local archive -
i have client private git server , number of local git installs clones of archive. want log commits database. know can local git clone, privacy reasons don't want clone on server database operations. ls-remote won't work won't give me access of system clones, have access server system.
is there way access git server without local repository? searches got muddles number of api's in github.
basically can't. git being distributed, no operation happen on server other fetch , push (that's basic explanation). checkout answer more: git equivalent of svn status -u
so, can use web interface github or bitbucket - guess you're self host, there's known git-web , other open source visualisation tool (gitlab , other). - ssh
onto repository machine , git commands on there.
or simply, clone repo on machine , check out there.
Comments
Post a Comment