Merge remote-tracking branch 'github/master'

This commit is contained in:
Josh Holtrop 2026-02-17 11:49:10 -05:00
commit 203365a9fb
4 changed files with 10 additions and 0 deletions

View File

@ -28,6 +28,9 @@ function git-config-joshs()
git config --global init.defaultBranch master git config --global init.defaultBranch master
# Only use configured user.name/user.email; do not guess them # Only use configured user.name/user.email; do not guess them
git config --global user.useConfigOnly true git config --global user.useConfigOnly true
# Do not automatically mark my branch as tracking the remote branch that I
# happened to use as the starting point.
git config --global branch.autoSetupMerge false
} }
function git-config-local-personal() function git-config-local-personal()
{ {

2
bash_profile Normal file
View File

@ -0,0 +1,2 @@
source $HOME/.profile
source $HOME/.bashrc

View File

@ -21,6 +21,9 @@ def install_file(src, dst):
files = [ files = [
('bash_aliases', '.bash_aliases'), ('bash_aliases', '.bash_aliases'),
('bash_aliases.d', '.bash_aliases.d'),
('bash_profile', '.bash_profile'),
('profile', '.profile'),
('inputrc', '.inputrc'), ('inputrc', '.inputrc'),
('screenrc', '.screenrc'), ('screenrc', '.screenrc'),
('gitignore', '.gitignore'), ('gitignore', '.gitignore'),

2
profile Normal file
View File

@ -0,0 +1,2 @@
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
export PATH="$HOME/bin":"$PATH"