Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vcsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kevin Lyda
vcsh
Commits
492f2eef
Commit
492f2eef
authored
13 years ago
by
Dieter Plaetinck
Browse files
Options
Downloads
Patches
Plain Diff
Make info calls consistent
parent
fe0993a7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
vcsh
+9
-5
9 additions, 5 deletions
vcsh
with
9 additions
and
5 deletions
vcsh
+
9
−
5
View file @
492f2eef
...
...
@@ -44,6 +44,10 @@ fatal () {
exit
$2
}
info
()
{
echo
"
$SELF
: info:
$1
"
}
setup
()
{
git config core.worktree
"
$GIT_WORK_TREE
"
git config core.excludesfile
".gitignore.d/
$VCSH_REPO_NAME
"
...
...
@@ -120,7 +124,7 @@ do
if
[
-e
"
$check_directory
"
]
;
then
fatal
"
$check_directory
exists but is not a directory"
13
else
echo
"
$SELF
:
info
:
attempting to create
$check_directory
"
info
"
attempting to create
$check_directory
"
mkdir
-p
"
$check_directory
"
||
fatal
"could not create
$check_directory
"
50
fi
fi
...
...
@@ -154,7 +158,7 @@ elif [ "$VCSH_COMMAND" = 'delete' ]; then
old_dir
=
"
$PWD
"
cd
"
$HOME
"
use
||
exit
$?
echo
"
$SELF
:
info
:
This operation WILL DETROY DATA!"
info
"
This operation WILL DETROY DATA!"
files
=
$(
git ls-files
)
echo
"These files will be deleted:
...
...
@@ -165,9 +169,9 @@ To continue, type \"Yes, do as I say\""
read
answer
[
"x
$answer
"
=
"xYes, do as I say"
]
||
exit
16
for
file
in
$files
;
do
rm
-f
$file
||
echo
"
$SELF
:
info
:
could not delete '
$file
', continuing with deletion"
rm
-f
$file
||
info
"
could not delete '
$file
', continuing with deletion"
done
rm
-rf
"
$GIT_DIR
"
||
echo
"
$SELF
:
info
:
could not delete '
$GIT_DIR
'"
rm
-rf
"
$GIT_DIR
"
||
info
"
could not delete '
$GIT_DIR
'"
cd
"
$old_dir
"
verbose
"delete end"
...
...
@@ -219,7 +223,7 @@ elif [ "$VCSH_COMMAND" = 'seed-gitignore' ]; then
rm
-f
"
$tempfile
"
&&
exit
if
[
-e
"
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
"
]
;
then
echo
"
$SELF
:
info
:
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
differs from new data, moving it to
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
.bak"
info
"
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
differs from new data, moving it to
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
.bak"
mv
-f
"
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
"
"
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
.bak"
||
fatal
"could not move
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
to
$HOME
/.gitignore.d/
$VCSH_REPO_NAME
.bak"
53
fi
...
...
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