-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add gitignore and ignore machine-generated-files #1
base: master
Are you sure you want to change the base?
Conversation
How do I do a code review with you?
…On Feb 14, 2017 11:46 AM, "Ethan Garofolo" ***@***.***> wrote:
@wfearn <https://github.com/wfearn> Probably good to get into the habit
of code reviews.
In this PR I just add a .gitignore file and add things to it recommended
by MS and users on StackOverflow.
------------------------------
You can view, comment on, or merge this pull request online at:
#1
Commit Summary
- Add gitignore and ignore machine-generated-files
File Changes
- *A* .gitignore
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-0> (5)
- *D* .vs/MetaDataMap/v15/.suo
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-1> (0)
- *D* MetaDataMap/obj/ARM/Debug/App.g.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-2> (0)
- *D* MetaDataMap/obj/ARM/Debug/CoreCompileInputs.cache
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-3> (1)
- *D* MetaDataMap/obj/ARM/Debug/DesignTimeResolveAssemblyRefer
encesInput.cache
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-4> (0)
- *D* MetaDataMap/obj/ARM/Debug/TemporaryGeneratedFile_
036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-5> (0)
- *D* MetaDataMap/obj/ARM/Debug/TemporaryGeneratedFile_
5937a670-0e60-4077-877b-f7221da3dda1.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-6> (0)
- *D* MetaDataMap/obj/ARM/Debug/TemporaryGeneratedFile_
E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-7> (0)
- *D* MetaDataMap/obj/x86/Debug/App.g.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-8> (0)
- *D* MetaDataMap/obj/x86/Debug/App.g.i.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-9> (59)
- *D* MetaDataMap/obj/x86/Debug/CoreCompileInputs.cache
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-10> (1)
- *D* MetaDataMap/obj/x86/Debug/DesignTimeResolveAssemblyRefer
encesInput.cache
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-11> (0)
- *D* MetaDataMap/obj/x86/Debug/MainPage.g.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-12> (0)
- *D* MetaDataMap/obj/x86/Debug/MainPage.g.i.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-13>
(39)
- *D* MetaDataMap/obj/x86/Debug/TemporaryGeneratedFile_
036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-14> (0)
- *D* MetaDataMap/obj/x86/Debug/TemporaryGeneratedFile_
5937a670-0e60-4077-877b-f7221da3dda1.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-15> (0)
- *D* MetaDataMap/obj/x86/Debug/TemporaryGeneratedFile_
E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-16> (0)
- *D* MetaDataMap/obj/x86/Debug/XamlSaveStateFile.xml
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-17> (1)
- *D* MetaDataMap/obj/x86/Debug/XamlTypeInfo.g.cs
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-18> (0)
- *D* MetaDataMap/project.lock.json
<https://github.com/byu-aml-lab/metadata-map/pull/1/files#diff-19>
(22001)
Patch Links:
- https://github.com/byu-aml-lab/metadata-map/pull/1.patch
- https://github.com/byu-aml-lab/metadata-map/pull/1.diff
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#1>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/ASq7IesNWRAFt9Ilf8acXkKiwUZUhdHEks5rcfZogaJpZM4MA2Hc>
.
|
When you start doing work, make a separate branch and do all of your work there. Then you push the branch up here and open a Pull Request. I can walk you through it when I'm up in the lab. Getting lunch real soon here. |
But for this Pull Request, you can click on the "files changed" tab and look through things to make sure they make sense. This one is mostly a bunch of file deletions, but the |
@@ -0,0 +1,5 @@ | |||
MetaDataMap/obj | |||
.vs/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For example, you can click on a line of code and type a commend about it.
@wfearn Probably good to get into the habit of code reviews.
In this PR I just add a
.gitignore
file and add things to it recommended by MS and users on StackOverflow.