December 2010
7 posts
Looking for svn export git equivalent command
So apparently the answer is “no.”
—
Basic command:
git archive master | tar -x -C /somewhere/else
git archive master | bzip2 >source-tree.tar.bz2
—
Add exclude:
git archive —format=tar —prefix=myproject-${VERSION}/ ${RELEASETAG} | bzip2 -9 > ${CURRENTDIR}/myproject-${RELEASE}.tar.bz2
.gitattributes export-ignore .gitignore export-ignore
—
...
Completely moving from svn to git
Thanks to github that introduce to better version control called git. After two weeks working on it, I feel confident to move completely from svn to git. I wish I can host my projects solely with github. But the pricing for private project force me to find alternative solution.
I found a few names as alternative. They are :
Unfuddle
Codebase
Assembla
XP-Dev
CodaSet
Repository Hosting
...
Forking project on github
What I really like about github compared with other similar services is that it allow to fork someone else project / repositore. Forking project give full control as if it is your own without worrying about writing permission.
On top of that, as the owner of original project, he has ability to see what changes are made by forked project. The great thing about this is that he can commit the...