<configuration>
<appSettings>
<add key="log4net.Internal.Debug" value="true"/>
</appSettings>
</configuration>
Note that if you are using log4net in a DLL, this goes into the app.config file for the EXE that is calling your DLL.
<configuration>
<appSettings>
<add key="log4net.Internal.Debug" value="true"/>
</appSettings>
</configuration>
[assembly: log4net.Config.XmlConfigurator
(Watch = true)]
[assembly: log4net.Config.XmlConfigurator
(ConfigFile = "log4net.config", Watch = true)]
[assembly: log4net.Config.XmlConfigurator
(ConfigFile = "../../log4net.config", Watch = true)]
$git svn dcommit --dry-run (shows a list of commits that will be applied)
Committing to http://xyz/svn/Project/trunk ...
diff-tree bb2820965209ff83d016817b46268f289e65ab07~1 bb2820965209ff83d016817b46268f289e65ab07
diff-tree cff6b4575f6f7797652f030cbb8b425f57f4e08a~1 cff6b4575f6f7797652f030cbb8b425f57f4e08a
$git diff-tree --stat bb2820965209ff83d016817b46268f289e65ab07~1 bb2820965209ff83d016817b46268f289e65ab07
$git diff-tree -p bb2820965209ff83d016817b46268f289e65ab07~1 bb2820965209ff83d016817b46268f289e65ab07
# On branch master
# Changed but not updated:
# (use "git add..." to update what will be committed)
#
# modified: build.properties
#
# On branch master
# Changed but not updated:
# (use "git add..." to update what will be committed)
#
# modified: .gitignore
# modified: build.properties
#
git update-index --assume-unchanged build.properties
# On branch master
nothing to commit (working directory clean)
git svn rebase --> "file.abs: needs update"
git stash (save local changes away)
git stash list (have a look at what is stashed)
git svn rebase
git svn dcommit
git stash apply (back to where we were before)
# Ignore everything in here apart from the .gitignore file
*
!.gitignore
<delete>
<fileset dir="${dist.dir}">
<exclude name=".gitignore" />
<include name="**/*.*"/>
</fileset>
</delete>