Questions tagged «ignore»

许多源代码控制系统具有“忽略”文件机制,该机制指定了不应在版本控制中提交或跟踪的文件。

10
您可以“忽略” Perforce中的文件吗?
有时我会使用Perforce的P4V IDE中的“协调离线工作...”功能来同步与P4软件仓库断开连接时正在处理的所有文件。它启动另一个执行“文件夹差异”的窗口。 我有一些我永远不想检入源代码管理的文件(例如在bin文件夹中找到的文件,例如DLL,代码生成的输出等)。是否有一种方法可以过滤掉那些文件/文件夹,使其不显示为“ new”(可能是)添加。它们往往使我真正感兴趣的文件列表变得混乱。P4是否具有Subversion的“忽略文件”功能的等效功能?

6
Spring Boot Test忽略logging.level
我的maven模块之一在运行测试时会忽略我的日志记录级别。 在src/test/resources我有application.properties: app.name=bbsng-import-backend app.description=Import Backend Module for Application spring.profiles.active=test # LOGGING logging.level.root=error logging.level.org.springframework.core =fatal logging.level.org.springframework.beans=fatal logging.level.org.springframework.context=fatal logging.level.org.springframework.transaction=error logging.level.org.springframework.test=error logging.level.org.springframework.web=error logging.level.org.hibernate=ERROR 我也试过了application-test.properties。 我的应用程序记录很多,尤其是在加载上下文时。我想logback.xml,logback-test.xml和logback-spring.xml,但没有什么帮助。 我的pom: <parent> <groupId>at.company.bbsng</groupId> <artifactId>bbsng-import</artifactId> <version>0.1.0-SNAPSHOT</version> </parent> <artifactId>bbsng-import-backend</artifactId> <name>bbsng-import-backend</name> <properties> <start-class>at.company.bbsng.dataimport.ApplicationImportBackend</start-class> </properties> <dependencies> <!-- APPLICATION ... --> <dependency> <groupId>at.company.bbsng</groupId> <artifactId>bbsng-app-domain</artifactId> <scope>test</scope> </dependency> <!-- SPRING ... --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-batch</artifactId> …

6
忽略git子模块的新提交
背景 在Linux上使用Git 1.8.1.1。存储库如下所示: master book 子模块的创建如下: $ cd /path/to/master $ git submodule add https://user@bitbucket.org/user/repo.git book 该book子模块是干净的: $ cd /path/to/master/book/ $ git status # On branch master nothing to commit, working directory clean 问题 另一方面,母版显示book子模块有“新提交”: $ cd /path/to/master/ $ git status # On branch master # Changes not staged for commit: …

7
什么时候以及为什么需要在C ++中使用cin.ignore()?
我用C ++写了一个非常基本的程序,要求用户输入一个数字,然后输入一个字符串。令我惊讶的是,在运行该程序时,它从未停止过询问字符串。它只是跳过了它。在对StackOverflow进行一些阅读之后,我发现我需要添加一行内容: cin.ignore(256, '\n'); 在获取字符串输入的行之前。添加该功能可以解决问题并使程序正常运行。我的问题是,为什么C ++需要这一cin.ignore()行?如何预测何时需要使用cin.ignore()? 这是我编写的程序: #include <iostream> #include <string> using namespace std; int main() { double num; string mystr; cout << "Please enter a number: " << "\n"; cin >> num; cout << "Your number is: " << num << "\n"; cin.ignore(256, '\n'); // Why do I need …
73 c++  cin  getline  ignore 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.