Search Results

17
votes

Why is git better than Subversion?

http://whygitisbetterthanx.com/#svn - The site outlines the various pros and cons of git vs another SCM. Briefly: …
1
vote

Forking a FOSS-project’s Git repository

If you're actually forking (starting off where the original project left off), definitely clone the original repository and just continue committing. This will not only allow you to merge changes f …
10
votes

Git or SVN for Rails app?

I'd say go for Git. Mostly because I'm biased, but also because you don't need to setup any sort of server with Git, you just git init and go. …
8
votes

How to achieve the below with Git ?

At the moment, the only way I can think of is by using submodules. The two modules (assemblebot, vpl) would each be a subm …
1
vote

Why isn’t Git used for package management?

If you mean using a DVCS for tracking the build scripts (port files, ebuilds, PKGBUILDs, rpm spec files, etc) then they are used. Fedora is probably the most popular distributions which partially u …
4
votes

Subversion: stage files to commit explicitly?

An alternative method would be to use the git-svn bridge at work, unless there are reasons as to why you can't. No one but you will have to know that you're actually using Git. This way you get all …
3
votes

How do I share code via git with others having the Android repo?

I'm not sure what Repo is or does, but it seems to me like you want to clone git://android.git.kernel.org/platform/bionic.git: git clone --bare git://android.git.kernel …