SwimBikeRun
SwimBikeRun

Reputation: 4470

A way to access Git without installing client software? (Web access available?)

If I am working on a project from a hotel computer, is there a way to access a git repository (gitorious) using a web based client? I have a portable c++ compiler for the coding part, but I need to download and commit files to git without the ability to install git software. A portable git client would also work.

Upvotes: 20

Views: 38950

Answers (3)

RuntimeException
RuntimeException

Reputation: 1643

Updating the new link to download portable Git for Windows archive file -

https://github.com/msysgit/msysgit/releases

========

Update: 2015-09

It seems like msysgit is now redundant. Please see this - msysGit vs Git for Windows

The portable git 2.x version is available here - https://git-scm.com/download/win

A download starts automatically. You may cancel that one. Instead , there is a link to the "thumbdrive version" on the page.

Alternatively - https://github.com/git-for-windows/git/releases

Upvotes: 11

Lynob
Lynob

Reputation: 5347

There is installable and portable versions of Git in https://github.com/msysgit/msysgit/releases

Upvotes: 8

Philip Oakley
Philip Oakley

Reputation: 14091

The portable msysgit runs direct from the USB stick. There are a few 'need to know' aspects such as portable-git-windows-setting-home-environment-variable and stackoverflow/fix-msysgit-portable-home-location - a Google search will pick them up.

Upvotes: 5

Related Questions