Sometimes, I create local branches in git, and I'd like to get a warning message when I try to dcommit from them.
How can I prevent myself from accidentally dcommiting from a local branch?
|
Sometimes, I create local branches in git, and I'd like to get a warning message when I try to dcommit from them. How can I prevent myself from accidentally dcommiting from a local branch?
| ||||
|
feedback
|
|
An alternative to pre-commit hooks, if you're using Linux (or Git bash or Cygwin or similar), is to wrap
(I've tested this with bash and zsh on Red Hat, and bash on Cygwin) Whenever you call Remember that after updating | |||||||||
feedback
|
|
First thing that comes in mind is using a git pre-commit hook to solve the problem. This would be easy for pure git repos:
But as discussed in Hooks for git-svn, this isn't fully working. VonC came up with an (accepted) answer where he utilizes an intermediate bare repo that acts like kind of a proxy between git ans SVN. Maybe this could help you too. | |||
|
feedback
|
|
Perhaps some kind of pre-commit hook? | |||
|
feedback
|
git config --rename-section "svn-remote.svn" "no-svn-remote". Once you want to do the dcommit, you can revert that. – vasquez Feb 13 at 10:54