Merge pull request #79 from martintama/master

Ignore file mode changes on commits
This commit is contained in:
hemanth.hm 2016-06-12 10:55:34 +05:30 committed by GitHub
commit 7b00ecf798
2 changed files with 9 additions and 0 deletions

View File

@ -109,6 +109,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
* [Bypass pre-commit and commit-msg githooks](#bypass-pre-commit-and-commit-msg-githooks)
* [List commits and changes to a specific file (even through renaming)](#list-commits-and-changes-to-a-specific-file-even-through-renaming)
* [Clone a single branch](#clone-a-single-branch)
* [Ignore file mode changes on commits](#ignore-file-mode-changes-on-commits)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -739,5 +740,10 @@ git log --follow -p -- <file_path>
git clone -b <branch-name> --single-branch https://github.com/user/repo.git
```
## Ignore file mode changes on commits
```sh
git config core.fileMode false
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -327,4 +327,7 @@
},{
"title": "Clone a single branch",
"tip": "git clone -b <branch-name> --single-branch https://github.com/user/repo.git"
},{
"title": "Ignore file mode changes on commits",
"tip": "git config core.fileMode false"
}]