git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/.profile
blob: e96906d27976e4ed7ce4348b7321a6e3f32398d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Expectation: .bash_profile exists then this file isn't read at all.
# Reality: well... .profile not being looked at at all _can_ happen.

# Set umask to something world-unreadable in any case
umask 027

# include .bash_profile - if we arrived here at all, it's important to do :-)
if [ -n "$BASH_VERSION" ]; then
	# include .bashrc if it exists
	if [ -f "$HOME/.bash_profile" ]; then
		. "$HOME/.bash_profile"
	fi
fi
an class='insertions'>+1 | * oopsie, comment syntax :-)H. P. 2022-03-211-1/+1 | * adding vim syntax to .vimrc as I also base a jinja template off of thisH. P. 2022-03-211-0/+1 | * +.vimrc [2] (rsync was missing)H. P. 2022-03-211-1/+1 | * +.vimrcH. P. 2022-03-212-0/+55 | * syntax error fixed for formatH. P. 2022-03-211-1/+1 | * bugfix: count (plus proper "doc-string")H. P. 2022-03-211-1/+2 | * check for DFDISTRIB, less output on rmH. P. 2022-03-211-3/+9 | * tags for other tasksH. P. 2022-03-211-0/+6 | * +doc for SSHAGHH. P. 2022-03-211-0/+2 | * Execute ssh agent only on machines we want to be the sourceH. P. 2022-03-212-1/+7 | | | | Also, see ssh_config(5) and ForwardAgent * distribution mechanism, more targets in makeH. P. 2022-03-213-4/+40 | * Makefile and distribute dir for "git-less" serversH. P. 2022-03-212-0/+10 | * adding distribute folder for servers which cannot reach gitH. P. 2022-03-212-0/+3 | * varname fumbleH. P. 2022-03-211-1/+1 | * +function for adding ssh keysH. P. 2022-03-212-1/+10 | * ...already marked for export in postexecH. P. 2022-03-211-1/+0 | | | | This reverts commit 99e0da1b6441da25a0d3427638f0fd1a20076f87. * mark SSH agent variables for exportH. P. 2022-03-211-0/+1 | * [2]H. P. 2022-03-211-1/+1 | * Adding postexec for "last-mile tasks"H. P. 2022-03-211-0/+4 | * Doesn't workH. P. 2022-03-211-8/+0 | * intermed: squeeze double ; after sourcing sshenvH. P. 2022-03-211-1/+1 | * "typo": wrong folderH. P. 2022-03-191-1/+1 | * +ssh-agent-launcher in bashexecH. P. 2022-03-191-0/+4 | * Initial commitH. P. 2022-03-1921-0/+1101