readme.txt 461 B

1234567891011
  1. You just wrote a cpp program that reads it config from a file named conf.ini.
  2. As you don't want to bother adding all files manualy, you have decided to use .gitignore.
  3. You need to create a .gitignore file that will:
  4. - Ignore all files that end with a ~ (bakup files)
  5. - Ignore every files in the out directory but conf.ini
  6. In other words, once the .gitignore file written, the command `git add .` should only stage:
  7. - .gitignore
  8. - main.cpp
  9. - out/conf.ini