git ignore file mode changes
git config core.fileMode false
git ignore file mode changes
git config core.fileMode false
how to see which file git recognizes
git ls-tree -r master --name-only
accept only image files upload html
<input type="file" name="myImage" accept="image/x-png,image/gif,image/jpeg" />
input type="file" and display image
<p><input type="file" accept="image/*" name="image" id="file" onchange="loadFile(event)" style="display: none;"></p>
<p><label for="file" style="cursor: pointer;">Upload Image</label></p>
<p><img id="output" width="200" /></p>
<script>
var loadFile = function(event) {
var image = document.getElementById('output');
image.src = URL.createObjectURL(event.target.files[0]);
};
</script>
input img
<input type="image" src="..." alt="...">
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us