ctubbsii commented on a change in pull request #187: fixes #185 No longer write to stdin URL: https://github.com/apache/fluo-uno/pull/187#discussion_r204533594
########## File path: conf/uno.conf ########## @@ -45,7 +45,7 @@ export FLUO_YARN_TARBALL=fluo-yarn-$FLUO_YARN_VERSION-bin.tar.gz # If set, 'uno fetch' will build (instead of downloading) an Accumulo tarball # from that directory and copy it to the downloads directory. -#export ACCUMULO_REPO= +export ACCUMULO_REPO=/home/rkturn2/git/accumulo Review comment: There are ways you can avoid running into that. Some of the things I do include: 1. Using `git status` before committing, with color output, so changes stand out. 1. Using `git diff HEAD` to verify changes before committing. 1. I also keep master branch pristine, and have a local branch with my local edits; when changes are made to master, I merge to my branch. When I wish to make changes, I do `git checkout -b feature-branch-name origin/master`. 1. Avoid use of `git add -A` 1. Use `git add --patch` when changing a file which also contains some stuff you want to ignore. Other suggestions to actually ignore changes to the file can be found at: https://stackoverflow.com/questions/1753070/how-do-i-configure-git-to-ignore-some-files-locally ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
