Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git global gitignore

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

.gitignore global

#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 global gitignore

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

.gitignore global

#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

PREVIOUS NEXT
Code Example
Shell :: Get all changes of the main branch locally 
Shell :: progress bar file.tar.xz extract 
Shell :: git remote url change 
Shell :: ubuntu server login logs 
Shell :: how to run shell script in linux 
Shell :: how to revert back to previous commit in git permanently 
Shell :: linux print screen 
Shell :: remove docker compose cluster 
Shell :: kill tensorboard process 
Shell :: How to push code to your github repository using token authentication 
Shell :: ionic start server 
Shell :: see changes to be pushed git 
Shell :: scp send file 
Shell :: robotframework seleniumlibrary install 
Shell :: intall mondg brew 
Shell :: ubuntu cmd firewall give access to port 
Shell :: install tesseract 5 ubuntu 
Shell :: git reset file 
Shell :: check git settings terminal 
Shell :: copy folder from on server machine 
Shell :: kubectl get pods 
Shell :: gradle threw an error while downloading artifacts from the network. retrying to download 
Shell :: how to install multiple packages in one line of pip 
Shell :: exit vim 
Shell :: task manager linux 
Shell :: change default kube editor nano 
Shell :: install plasma arch 
Shell :: poython opencv pip 
Shell :: delete branch git 
Shell :: react router install 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =