Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git global gitignore

touch ~/.gitignore
git config --global core.excludesfile ~/.gitignore
Comment

global gitignore

#Windows:
#Run this in cmd:
git config --global core.excludesFile "%USERPROFILE%.gitignore" && notepad "%USERPROFILE%.gitignore"

#Notepad will open, press yes to the prompt to make a new file.
#Any changes made to this file will work immediately for all repos.

## This makes both a ".gitconfig" and a ".gitignore" file in %USERPROFILE%
## The ".gitconfig" file is required for the ".gitignore" file to work.
Comment

gitignore global example

# This is a list of rules for ignoring files in every Git repositories on your computer.
# See https://help.github.com/articles/ignoring-files

# Compiled source #
###################
*.class
*.com
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log

# OS generated files #
######################
._*
.DS_Store
.DS_Store?
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Testing #
###########
.rspec
capybara-*.html
coverage
pickle-email-*.html
rerun.txt
spec/reports
spec/tmp
test/tmp
test/version_tmp

# node #
########
node_modules

# Rails #
#########
**.orig
*.rbc
*.sassc
.project
.rvmrc
.sass-cache
/.bundle
/db/*.sqlite3
/log/*
/public/system/*
/tmp/*
/vendor/bundle


# Ruby #
########
*.gem
*.rbc
.bundle
.config
.yardoc
_yardoc
doc/
InstalledFiles
lib/bundler/man
pkg
rdoc
tmp

# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset

# CTags #
#########
tags

# Env #
#######
.env

# Python #
#######
*.pyc
__pycache__/
Comment

git ignore global

$ cd ~
$ touch .gitignore_global
$ git config --global core.excludesfile ~/.gitignore_global
Comment

PREVIOUS NEXT
Code Example
Shell :: kali network manager is not running 
Shell :: how to install jest 
Shell :: delete all unstaged files git 
Shell :: how to convert ts to mp4 with ffmpeg 
Shell :: install zsh auto suggestion 
Shell :: how to change swap space on ubuntu 
Shell :: zsh: command not found: flutter 
Shell :: turn on bluetooth terminal linux 
Shell :: git reset to commit 
Shell :: gnome 3 show seconds 
Shell :: install jupyter notebook ubuntu 20.04 
Shell :: clone mongodb database to local machine 
Shell :: how to install arduino ide on ubuntu 
Shell :: wsl sync clock time 
Shell :: Error: ENOSPC: System limit for number of file watchers reached 
Shell :: yarn: command not found 
Shell :: npm install redux form 
Shell :: unable to resolve reference git 
Shell :: arch linux vscode 
Shell :: laravel add to path ubuntu 
Shell :: git credentials 
Shell :: reload restart bashrc 
Shell :: bash for loop find 
Shell :: show public ip ubuntu 
Shell :: save git password and username once 
Shell :: how to install xampp on mac 
Shell :: cmake openssl linux 
Shell :: kill all ports mac 
Shell :: kubectl connect eks 
Shell :: download snap store for kali linux 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =