svn-update

svn update is not working

≯℡__Kan透↙ 提交于 2019-12-25 03:37:17
问题 I am using netbeans IDE and svn repository to run my project . I have updated the netbeans TO 7.3 version and checked out the repository again. The code was successfully checked out. But when I run the command svn up /var/www/ then the following error appears on command prompt : svn: The path '/var/www' appears to be part of a Subversion 1.7 or greater working copy. Please upgrade your Subversion client to use this working copy. I have browsed the error but unable to get any solution. Please

Tortoise SVN update and commit doesn't work

元气小坏坏 提交于 2019-12-08 11:21:23
问题 I am having issues with Tortoise SVN lately. I am unable to update and commit anything. Tortoise SVN version: 1.6.16 Build 21511 - 64 bit OS: Windows 8 server We use VisualSVN Server for the repo. Whenever I try to update, I see the following screen where it doesn't update anything actually and it just stays like this for hours. Similarly, when I try to commit anything, I get the error message below It happens only on my computer. Other developers are running the same OS, same TortoiseSVN

What's the git equivalent of “svn update -r”?

不羁岁月 提交于 2019-12-04 08:01:58
问题 I'm a recent git convert. It's great to be able to use git-svn to keep my branches locally without disturbing the svn server. There was a bug that existed in the latest version of the code. I wanted to establish a time when it worked so that I could use git bisect. I couldn't find the right command to move back in time. Thanks. 回答1: git checkout HEAD~1 This will move your current HEAD to one revision earlier. git checkout <sha> This will move your current HEAD to the given revision. Use git

What's the git equivalent of “svn update -r”?

守給你的承諾、 提交于 2019-12-02 19:56:08
I'm a recent git convert. It's great to be able to use git-svn to keep my branches locally without disturbing the svn server. There was a bug that existed in the latest version of the code. I wanted to establish a time when it worked so that I could use git bisect. I couldn't find the right command to move back in time. Thanks. git checkout HEAD~1 This will move your current HEAD to one revision earlier. git checkout <sha> This will move your current HEAD to the given revision. Use git log or gitk to find the revision you’re looking for. And getting back to latest (equivalent to: svn up), you

Change depth in existing SVN working copy without redownloading

萝らか妹 提交于 2019-11-30 11:49:11
问题 I have a working copy of an entire SVN repository, but I want to change it into a sparse working copy because of disk space issues. One way to do this would be: svn up --set-depth immediates projects svn up --set-depth infinity projects/project1 svn up --set-depth infinity projects/project2 However, that would first delete project1 and project2 , then redownload them. This is really inconvenient, because they're very large and the server's upload speed is very low. I tried this (with another,