2019-02-18 16:55:05 +00:00
|
|
|
# enables git management through dotfiles command
|
|
|
|
alias dotfiles='/usr/bin/git --git-dir=/home/marty/.dotfiles/ --work-tree=/home/marty'
|
2019-02-18 17:11:36 +00:00
|
|
|
|
2019-03-05 16:45:44 +00:00
|
|
|
# The following commands are run on your git repo if you installed through the script
|
|
|
|
# You can invoke them manually, but it's not recommended to keep them active in here.
|
|
|
|
# Otherwise each time a shell starts up, *whatever directory you are in*, the commands
|
|
|
|
# will be re-run.
|
|
|
|
#
|
2019-02-18 17:11:36 +00:00
|
|
|
## Make git assume the readme is not changing (essentially ignore it).
|
|
|
|
#
|
|
|
|
# This means you can safely remove the README.md file from your home dir
|
|
|
|
# without git trying to delete it from the repository.
|
|
|
|
# If you WANT to make changes to the README.md, you will have to make git
|
|
|
|
# watch it again with the commented out command
|
|
|
|
#
|
|
|
|
# Read more: https://stackoverflow.com/questions/4308610/how-to-ignore-certain-files-in-git
|
|
|
|
# and: https://stackoverflow.com/questions/653454/how-do-you-make-git-ignore-files-without-using-gitignore
|
|
|
|
#
|
|
|
|
#dotfiles update-index --no-assume-unchanged README.md
|
2019-03-05 16:45:44 +00:00
|
|
|
#dotfiles update-index --assume-unchanged README.md
|
2019-02-18 17:17:32 +00:00
|
|
|
|
|
|
|
## Make git not show untracked files (i.e. ALL other files in your home dir)
|
2019-03-05 16:45:44 +00:00
|
|
|
#dotfiles config status.showUntrackedFiles no
|