Is it possible (or desirable?!) to set up git svn to behave more like git? For example, instead of writing
git svn dcommit
why can’t I just write
git push
Similarly, instead of
git svn rebase
why not just
git pull
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
git and svn are philosophically different, and pushing/pulling is one of the key differences.
While I could argue that what you are proposing is fundamentally wrong (and you even suggest that in your question), you could accomplish your goal with aliases and a bit of mental re-wiring.
These aren’t perfect, but might work for you or give you some ideas.