RSS Feeds
Welcome, Guest :: Blog Home | Login | Register
git config core.filemode false
There are 1 comments on this article.
Login or register to post.
cd /var/git/ svn export http://svn.domain.com/trunk myapp.git cd myapp.git git init git add . git commit -m "initial import"
ssh user@ipaddress mkdir /var/git/myapp.git && cd /var/git/myapp.git git --bare init
git remote add origin user@ipaddress:/var/git/myapp.git git push origin master
git clone user@ipaddress:/var/git/myapp.git
There are no comments.