On Nov 27, 2007 3:02 PM, Patrick Aljord <patcito@xxxxxxxxx> wrote: > > http://jointheconversation.org/railsgit > > I think you can just use 'git-init' now no need for git-init-db. also once you've created your remote bare git rep, you don't need to use scp, you can just do: $ git-push --all git://server/remote.git and to push there automatically: $ git remote add origin ssh://server/remote.git $ git config branch.master.remote origin $ git config branch.master.merge refs/heads/master $ git fetch $ git merge master also for adding new files, rather than doing "git add file1 file2 file3 etc" I just do "git add ." and put in .gitignore all the files that I don't want to commit but I don't know if that's recommended :) - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html