Closed umeditor closed 7 years ago
I just added my update to the code that scans CSVs. I'm not sure I added it correctly. Let me know if you have questions.
In order to prevent the PII_output.csv code from being scanned during the CSV scanning part, I modified the path references. So now the output writes to the working directory and the user needs to specify a data path below the working directory.
Thanks for the quick commit. I'm going to make a few small tweeks. In the future, create a branch that we can review and create a pull request from instead of committing directly to master. That will help make sure that master works while we work on new features and fixes in branches.
Sorry, I meant to create a branch but didn't realize that I was writing to the master. Do I need to create a branch in my local repository before I start working on the code? Or is it possible to make a branch after I've made some changes?
If you've not committed your changes, you can create a branch at any point using git checkout -b [new-branch]
where [new-branch] is the name of the branch. My general work flow when starting a new feature or working on a bug are:
git pull
to get current code from GitHubgit checkout -b [new-branch]
to create a new branch and switch to itgit add .
to add any new files to gitgit commit -a -m "commit message"
to commit changes to branchgit push -u origin [new-branch]
to push branch to GitHub and track future changes to it (future git pull
from the local machine will get changes to the branch found on GitHubOk thanks, that's very helpful.
Scan files with ".csv" extension.