Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vcsh-shell
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nik | Klampfradler
vcsh-shell
Commits
129b5578
Unverified
Commit
129b5578
authored
6 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Add profile.
parents
No related branches found
No related tags found
No related merge requests found
Pipeline
#60
canceled
6 years ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.profile
+38
-0
38 additions, 0 deletions
.profile
with
38 additions
and
0 deletions
.profile
0 → 100644
+
38
−
0
View file @
129b5578
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if
[
-n
"
$BASH_VERSION
"
]
;
then
# include .bashrc if it exists
if
[
-f
"
$HOME
/.bashrc"
]
;
then
.
"
$HOME
/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if
[
-d
"
$HOME
/bin"
]
;
then
PATH
=
"
$HOME
/bin:
$PATH
"
fi
# set PATH so it includes user's private bin if it exists
if
[
-d
"
$HOME
/.local/bin"
]
;
then
PATH
=
"
$HOME
/.local/bin:
$PATH
"
fi
# Set editor
for
e
in
jstar jupp joe vim nano
;
do
if
command
-v
$e
>
/dev/null
;
then
export
EDITOR
=
$e
break
fi
done
# Set some variables
export
DEBEMAIL
=
nik@naturalnet.de
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment