December 2010
7 posts
Dec 24th
Dec 15th
Dec 15th
Dec 15th
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 — ...
Dec 15th
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 ...
Dec 11th
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...
Dec 1st