Horje
git ignore local files Code Example
git ignore local file changes
# To skip local changes to files managed by git
$ git update-index --skip-worktree path/to/file
# To restore normal git behaviour
$ git update-index --no-skip-worktree path/to/file

# assume-unchanged can also be used, it's designed for local files that DON'T change
# git reset --hard will drop files ignored through assume-unchanged
$ git update-index --assume-unchanged path/to/file
$ git update-index --no-assume-unchanged path/to/file
git ignore local files
<!---- git ignore local files---->

echo YOURFILE_OR_DIRECTOY >> .git/info/exclude 

<!---- Description 
If you don't want to create a .gitignore file to share with others,
you can create rules that are not committed with the repository. 

You can use this technique for locally-generated files that you don't
expect other users to generate, such as files created by your editor.

Use your favorite text editor to open the file called 
.git/info/exclude within the root of your Git repository. 
Any rule you add here will not be checked in, and will only ignore
files for your local repository.
---->




Html

Related
html document 4.0 Code Example html document 4.0 Code Example
html disable submit until all required field is complete Code Example html disable submit until all required field is complete Code Example
cdn code.jquery.com/ui/1.12.1/themes/base/jquery-ui.cs Code Example cdn code.jquery.com/ui/1.12.1/themes/base/jquery-ui.cs Code Example
display div while load Code Example display div while load Code Example
donwload node js Code Example donwload node js Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10