from

git remove a file from remote repository

橙三吉。 提交于 2020-02-29 14:42:34
当你误提交一些文件的时候,比如log 之类的,这些事本地文件需要的,那么如何删除远程仓库的这些log,而不删除本地的文件呢。 git rm -r -- cached File-or-FolderName -r Allow recursive removal when a leading directory name is given. -- cached Use this option to unstage and remove paths only from the index. Working tree files, whether modified or not, will be left alone. -n或者 -- dry-run Don’t actually remove any file(s). Instead, just show if they exist in the index and would otherwise be removed by the command. git rm -r -n --cached "bin/" //-n:加上这个参数,执行命令时,是不会删除任何文件,而是展示此命令要删除的文件列表预览。 git rm File-or-FolderName #### 删除本地和repository git commit -m "Removed

Cannot checkout from svn: Cannot run program "svn"

大兔子大兔子 提交于 2019-12-06 19:13:49
IntelliJ IDEA 13.1.2安装后,SVN checkout时候会出现如下错误: Cannot load supported formats: Cannot run program "svn": CreateProcess error=2, μ 究其原因,是SVN使用了命令行工具,如果本地没有SVN的命令行工具,则导致出错。 解决办法: 1、安装客户端 http://ncu.dl.sourceforge.net/project/tortoisesvn/1.8.7/Application/TortoiseSVN-1.8.7.25475-x64-svn-1.8.9.msi http://jaist.dl.sourceforge.net/project/tortoisesvn/1.8.7/Language%20Packs/LanguagePack_1.8.7.25475-x64-zh_CN.msi 注意:安装时候必须选中command line 。。。这个选项。 2、完成后配置IDEA 这样,问题彻底解决! 来源: oschina 链接: https://my.oschina.net/u/1157906/blog/284013