Git
撤销本地修改:git reset --hard origin/master
提交前预览:git commit -v
添加所有修改的:git add -A
提交全部并记录:git commit -a -m 'message'
推送:git push
更新:git pull
查看当前状态:git status
忽略文件:添加到.gitignore
忽略文件后,如果已经提交过的,运行:
1)git rm -r --cached .
2)git add .
3)git commit -m ".gitignore is now working"
SVN
服务器迁移后修改本地路径:svn sw --relocate
VisualSVN Server复制迁移后客户端提交出错:
The POST request returned invalid XML in the response: XML parse error at line
3: not well-formed (invalid token) (/svn/dev/!svn/me)
解决方法:打开SVN服务器管理端,右击服务器点击“属性”,反复勾选"Automatically adjust permissions"并点击应用