Tagged Questions
3
votes
1answer
54 views
VIM - Passing colon-commands list via command-line
Good day,
I am writing a simple script within my BASHRC file to accommodate something I couldn't quite resolve in a previous question:
Side-by-side view in Vim of svn-diff for entire directory
I ...
1
vote
0answers
29 views
svn merge --dry-run Show svn diff
I'm working with a codebase that has (historically) been merged by hand rather than via svn merge. I'm trying to change that by proving to everyone how useful merge is - but when I do a dry run, I ...
1
vote
1answer
51 views
How do I exclude certain files from a svn diff?
I'm using svn diff -c 789 to show the changes made in revision 789 of our software, but it's showing a lot of files I don't care about, in particular test files. How can I exclude certain files from ...
0
votes
1answer
28 views
SVN 1.7 reapply reverted changes
I have problem with applying svn patch. I'm using svn 1.7 with TortoiseSVN.
Some changes were made in revision A. There were some following commits until revision B reverted changes done in revision ...
0
votes
2answers
40 views
Can I commit one single SVN diff file instead of committing 10 individual files in one go?
I have a list of files that I work on in my source tree in SVN. I might change some other files for my local use and I do not want to commit them. Recently working late by mistake I committed some ...
2
votes
1answer
84 views
Tortoise SVN Diff color codes
Could anyone explain the color codes when doing a diff in SVN, i.e. some lines are marked as red, yellow, blue..etc
1
vote
1answer
26 views
Output for svn diff not generating expected contents
When I run the following command from my working directory:
svn diff > c:\temp\diff-results.diff
I expect the diff-results.diff file to store the modifications I made to files in my working ...
0
votes
1answer
75 views
unable to catch svn command output using exec function
I tried to check status of a file in svn working copy by issuing following commmand:
svn status /home/guna/server/local/svndump/site/head.php
Which outputs results like,
M ...
1
vote
2answers
44 views
Is it possible to compare two different revisions with VisualSVN plugin in visual studio 2012?
With visualsvn plugin, I am able to compare current working copy with the head revision in the repository.
But how could I compare two different revisions that is not working copy or head revision ...
2
votes
1answer
219 views
How do you configure TortoiseSVN to use Visual Studio 2012 for diffing?
I want to use the new Visual Studio diffing tool for diffing changes via TortoiseSVN. What do I type in the external tool command line box?
-5
votes
2answers
42 views
Can someone please help me make meaning of diff in git and svn [duplicate]
This is the output I get of the diff
diff --git a/README.md b/README.md
index cda48bc..95ce355 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,3 @@
THIS IS LINE 1
-THIS IS LINE 2
+THIS IS LINE X
...
2
votes
2answers
139 views
How to create git-compatible patch from svn revision, that contains binary file changes?
I want to apply diff from SVN revision to some directory. But that diff contains changes to binary files (.png images). I'm trying to use git-apply, like this:
svn diff --force --git -r 1:2 ...
2
votes
1answer
37 views
How do I determine the lineage of several sets of source code?
I have several hundred sets of source code where I know that files were copied from one project to another. Most of the projects were checked into subversion long after the fact (the revision history ...
2
votes
2answers
237 views
Subversion client for Diff/Compare (Mac)
I'm looking for a (free) subversion client that gives a complete DIFF/Compare between two revisions. Xcode's Source Control comparison tool only compares one file at a time, and doesn't give you a ...
1
vote
1answer
197 views
svn diff in a batch file
I am trying to obtain the number of lines changed between two two revisions of a file using the svn diff command. My code is as follows:
svn diff "http://svn.apache.org/repos/asf/lucene/dev/trunk" ...