enricorossi.org

Enrico Rossi


Articles tagged with git

Git public and private server setup

Tags: git, howto, scm, tips

Following a thread among friends on Git hosting problems, I have decided to write about my git installation in order to make some of my repositories publicly available, other shared and other private for restricted use among developers.

Public available git area.

Create a directory in your webserver and make …

Read more...

Gitweb installed

Tags: git, howto, scm, software

I have managed to install gitweb to give the opportunity to other to watch the development of some of my projects.

I hope in the near future to have the time to put other sources in it and eventually do some work on header and footer.

The important thing is …

Read more...

Git svn track remote repo

Tags: git, svn, tips, vcs

How to track a remote master git-svn into my git repo without cloning.

git remote add origin https://myuser@myserver.com/davgitrepo
git remote update origin
git branch --track origin

Updating my git-svn repo with

git-svn rebase

Then update the git copy with

git push origin
Read more...