tortoisesvn

How do I download code using SVN/Tortoise from Google Code?

寵の児 提交于 2019-11-26 10:09:56
问题 I just saw a really cool WPF twitter client that I think is developed by the Herding Code podcast guys HerdingCode called Witty. (or at least, I see a lot of those guys using this client). This project is currently posted up on Google Code. Many of the projects on Google Code use Subversion as the version control system (including Witty). Having never used Subversion, I\'m not sure what to do to download the code. On the source page for this project (google code witty source) it gives the

Where is svn.exe in my machine?

做~自己de王妃 提交于 2019-11-26 09:26:27
问题 I have Tortoise svn installed on my desktop. I want to perform some tasks using commandline svn.exe? But I am not able to find svn.exe on my machine. Do we have to install something else to get the svn.exe commands? 回答1: The subversion program code is linked into the TortoiseSVN binary. You can install a compatible discrete version if you need to access the repository from the command line. UPDATE: Recent versions of the TortoiseSVN package can install a discrete svn.exe in addition to the

How to get started with svn:externals?

主宰稳场 提交于 2019-11-26 09:18:07
问题 I\'m looking for a succinct and well-written tutorial on using svn:externals. I already know how to use them in a basic way myself, but I want a good article that I can link to when answering questions like this one that come up recently: What to do with multiple projects depending on the same source? I\'d do it myself, but I don\'t use them often enough to want to stick my neck out and write a tutorial on it. Google was surprisingly unhelpful with this topic. 回答1: Here are some sections

How can I delete all unversioned/ignored files/folders in my working copy?

孤街浪徒 提交于 2019-11-26 08:45:57
问题 If I have a working copy of a Subversion repository, is there a way to delete all unversioned or ignored files in that working copy with a single command or tool? Essentially, I\'m looking for the SVN analogue to git clean. Either a command line or GUI solution (for TortoiseSVN) would be acceptable. 回答1: Using TortoiseSVN: right-click on working copy folder, while holding the shift-key down choose "delete unversioned items" 回答2: svn status --no-ignore | grep '^[I?]' | cut -c 9- | while IFS=

How to checkout a specific Subversion revision from the command line?

拥有回忆 提交于 2019-11-26 07:52:12
问题 I want to checkout a specific revision of a folder in Subversion using the command line. I don\'t see an option for specifying the revision number in TortoiseProc.exe , TortoiseProc.exe /command:checkout <url> How do I get the revision I want? Is TortoiseProc.exe the right tool for what I want to do? 回答1: If you already have it checked out locally then you can cd to where it is checked out, then use this syntax: $ svn up -rXXXX ref: Checkout a specific revision from subversion from command

Using TortoiseSVN via the command line

六眼飞鱼酱① 提交于 2019-11-26 04:59:20
问题 I want to use commandline SVN options. I use TortoiseSVN, and I run several commands and I get the following error. \'svn\' is not recognized as an internal or external command I used the command svn checkout [-N] [--ignore-externals] [-r rev] URL PATH I think I should add some environment variable or something else. What should I do or can\'t TortoiseSVN be used from the command line? 回答1: By default TortoiseSVN always has a GUI (Graphical User Interface) associated with it. But on the

TortoiseSVN icons not showing up under Windows 7

穿精又带淫゛_ 提交于 2019-11-26 04:57:09
问题 I can\'t seem to get the icons to display under Windows 7 and I really miss this from Windows XP. How can it be fixed? 回答1: Windows can only show a limited number of Overlay Icons (15 total, 11 after what Windows uses). Programs like Office Groove, Dropbox, Mozy, Carbonite, etc, will hijack a bunch of the 11 possible overlay icons (boy would it be nice if Microsoft upped the number of these as the number of applications that use them seem to increase and increase)... You can see what overlays

CentOS安装csvn,TortoiseSVN实现上传和下载

可紊 提交于 2019-11-26 03:25:51
Centos6.7安装CSVN 1. 关闭防火墙和selinux 关闭防火墙:systemctl stop firewalld 关闭selinux : vim /etc/selinux/config 将SELINUX修改为disabled 2.使用MobaXterm_Personal_11.1将这两个软件包上传到服务器的/opt目录下 安装jdk1.8 tar zxvf jdk-8u91-linux-x64.gz mv jdk1.8.0_91/ /usr/local/ 修改配置文件 vi /etc/profile 添加如下三行: exportJAVA_HOME=/usr/local/jdk1.8.0_91 export PATH= J A V A H O M E / b i n : JAVA_HOME/bin: J A V A H ​ O M E / b i n : PATH export CLASSPATH=.: J A V A H O M E / l i b / d t . j a r : JAVA_HOME/lib/dt.jar: J A V A H ​ O M E / l i b / d t . j a r : JAVA_HOME/lib/tools.jar 重新加载环境变量: source/etc/profile java -version 查看java版本已经是1.8

[转] Source Insight技巧收集

自作多情 提交于 2019-11-26 00:15:43
查看( 74 ) / 评论( 0 ) / 评分( 0 / 0 ) Source Insight技巧收集 1、背景色选择 要改变背景色Options->preference->windows background->color设置背景色 2、解决字符等宽对齐问题。 SIS默认字体是VERDANA,很漂亮。这网页上应该也是用的VERDANA字体。但由于美观的缘故,VERDANA字体是不等宽的。比如下面两行 llllllllll MMMMMMMMMM 同样10个字符,长度差多了.用VERDANA来看程序,有些本应该对齐的就歪了。解放方法是使用等宽的字体,但肯定比较丑。比较推荐的是用Courier New。 3、解决TAB键缩进问题 Options-> Document Options里面的右下角Editing Options栏里,把Expand tabs勾起来,然后确定。OK,现在TAB键的缩进和四个空格的缩进在SIS里面看起来就对齐咯 4、SI中的自动对齐设置: 在C程序里, 如果遇到行末没有分号的语句,如IF, WHILE, SWITCH等, 写到该行末按回车,则新行自动相对上一行缩进两列。 Option->Document option下的Auto Indient中Auto Indient Type有三种类型 None,Simple,Smart。个人推荐选用Simple类型。 5