In SVN you can checkout a portion of a repository ie:
http://some-url.com/repo/app1/trunk/plugins/plugin1
Can you do the same when you git clone? As I cannot get this to work
Thanks
...
I have just recently converted an old company svn repo which has a bunch of projects into a git repo
ie.
repo
project-1
project-2
project..n
From within this new git repo how would you recommend creating a submodule for each individual project?
...
Is there any? Right now i am using netbeans for this! Just to write some notes.
...
We use Hudson, Maven2 and maven-ear-plugin.
Is it possible to have the built EAR files to contain SVN revision in their filename (something like project-1234.ear)?
...
I want to adjust the output from my TeamCity build configuration of my class library so that the produced dll files have the following version number: 3.5.0.x, where x is the subversion revision number that TeamCity has picked up.
I've found that I can use the BUILD_NUMBER environment variable to get x, but unfortunately I don't underst...
I have a long-running post-commit hook that updates an index of subversion repository (from the project http://svnquery.tigris.org/) The postcommit hook already runs as a separate thread due to the RunDetached executable provided as part of svnquery. The postcommit hook is
C:\SvnIndex\RunDetached C:\SvnIndex\svnindex.exe update D:\Ind...
I would like to perform SVN operations on an SVN repository (over HTTP, if it matters) without requiring a working copy. Basically, here are the things I want to do:
Check if a directory exists remotely.
If the directory does not exist, create it
Check if a file exists in the repository
if the file does not exist, create a new fil...
I am trying to use git as a frontend to a svn repository in order to be able to use git's nice features like simple branching, stashing etc.
The problem is that the SVN repository is quite large (8,000 revs) and contains lots of branches and tags (old as well as new).
It's a near standard layout, with a config containing fetch, branche...
I have installed trac 0.11.6 stable with mod_wgsi with running on apache server on my windows server 2008. When I do commit through TSVN, trac-post-commit-hook does not update and send out email notification. However if I use windows command line run: Python trac-post-commit-hook -p C:/trac -r 97 from my window command line, it updates m...
I have a repository already online, but I want to commit what I have on my hard drive and disregard what is on the online repository.
I know I can do an initial checkout on a blank folder, then delete the downloaded files, paste the new files to the folder in Windows Explorer and then do a commit. But I'd rather skip this step. There mu...
Hello Everybody,
I am working on a new project, and for that i need to install a SVN server. This is done right now.
At the moment i've running:
- Ubuntu
- Apache
- PHP5/MySQL
- A svn server
I can call the SVN server at http:// 192.168.1.36/svn/projectname with ToirtoiseSVN, when check out i get all the files right.
But I cann't visi...
Is it possible to create/delete/modify SVN users with the SVN PHP API?
Thank you.
...
I don't want any directory named build or dist to go into my SVN no matter how deep in the tree it is.
Is this possible? In git I just put
build
dist
in my .gitignore at the root and it recursively ignores. How do I do this with svn? Please don't tell me to do a propset on every parent dir...
...
I'm working with a program that writes data to fixed-size binary files that I store in a subversion archive.
The problem, however, is SVN (both the command-line client and TortiseSVN) thinks that since the size of the file didn't change, the file itself didn't change and it shouldn't commit it.
Is there a way to change what diffing met...
Hi All,
This seems like a pretty beginner question; however, I have no idea what the link for the latest revision of cake 1.3 is. I have git and svn working with eclipse. I think cake is using git now instead of SVN (perhaps I am mistaken). If it is using git could someone give me some instruction?
...
When I do a Svn up in a file with a local modification that can produce a conflict.
Is it possible to cancel svn update with a hook and write a message?
Thanks
...
I have a SVN where I am commenting some perl scripts. All the scripts are separate and have different tasks. Currently I am just using 'svn export' to release these scripts. Can anyone please suggest me how to properly release the software from SVN and put the version number with each release.
**
EDIT
**
I did some investigation and ...
HI have 3 WinXP computers which access subversion based on a linux server. I would like to change the author name displayed in the logs on a couple of the computers cause they are 'development pc 3' and the name of an old employee. How do I do this?
...
I am SharePoint Developer trying to get a Perl module to work with Subversion, but I think something is wrong with my syntax. I just need to get the username and password, pass it into the webservice, get a true/false and authenticate based on that information. Here is the code to the module in Perl:
package Apache2::AuthGetUser; #aut...
I am familiar with SVN and TFS for source control. One issue which I usually encounter is the same file is modified for different bugs (say bugP is fixed with revision/changeset (N), bugQ is fixed with revision(N+1) and bugR is fixed in revision/changeset(N+2)
Each revision/changeset work on different part of the same file and there is ...