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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kevin Lyda
vcsh
Commits
9a55a9d5
Commit
9a55a9d5
authored
Sep 18, 2011
by
Richard Hartmann
Browse files
Options
Downloads
Patches
Plain Diff
Switched from [ -n "$state" ] to [ "$state" = '1']
parent
1588d334
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
+20
-20
20 additions, 20 deletions
vcsh
with
20 additions
and
20 deletions
vcsh
+
20
−
20
View file @
9a55a9d5
#!/bin/sh
[
"
$VCSH_DEBUG
"
-gt
0
]
&&
set
-x
[
"
$VCSH_DEBUG
"
=
'1'
]
&&
set
-x
SELF
=
$(
basename
$0
)
...
...
@@ -20,11 +20,11 @@ done
VCSH_BASE
=
"
$XDG_CONFIG_HOME
/vcsh/repo.d"
debug
()
{
[
-n
"
$VCSH_DEBUG
"
]
&&
echo
"
$SELF
: debug:
$1
"
[
"
$VCSH_DEBUG
"
=
'1'
]
&&
echo
"
$SELF
: debug:
$1
"
}
verbose
()
{
if
[
-n
"
$VCSH_DEBUG
"
]
||
[
-n
"
$VCSH_VERBOSE
"
]
;
then
echo
"
$SELF
: verbose:
$1
"
;
fi
if
[
"
$VCSH_DEBUG
"
=
'1'
]
||
[
"
$VCSH_VERBOSE
"
=
'1'
]
;
then
echo
"
$SELF
: verbose:
$1
"
;
fi
}
help
()
{
...
...
@@ -46,7 +46,7 @@ help() {
}
use
()
{
verbose
"use()
start
"
verbose
"use()
begin
"
REPO_NAME
=
"
$1
"
GIT_DIR
=
"
$VCSH_BASE
/
$REPO_NAME
.git"
...
...
@@ -58,11 +58,11 @@ use() {
export
GIT_DIR
export
GIT_WORK_TREE
=
"
$(
git config
--get
core.worktree
)
"
export
VCSH_DIRECTORY
=
"
$REPO_NAME
"
verbose
"use()
stop
"
verbose
"use()
end
"
}
init
()
{
verbose
"init()
start
"
verbose
"init()
begin
"
[
-e
"
$GIT_DIR
"
]
&&
echo
"
$SELF
: fatal:
$GIT_DIR
exists"
&&
return
21
...
...
@@ -74,7 +74,7 @@ init() {
cd
$GIT_WORK_TREE
git init
git config core.worktree
$GIT_WORK_TREE
verbose
"init()
stop
"
verbose
"init()
end
"
}
leave
()
{
...
...
@@ -89,24 +89,24 @@ if [ "$1" = 'help' ] || [ "$#" -eq 0 ]; then
exit
$?
elif
[
"
$1
"
=
'list'
]
;
then
verbose
"list
start
"
verbose
"list
begin
"
for
i
in
$VCSH_BASE
/
*
.git
;
do
echo
$(
basename
$i
.git
)
done
verbose
"list
stop
"
verbose
"list
end
"
exit
0
elif
[
"
$1
"
=
'run'
]
;
then
verbose
"run
start
"
verbose
"run
begin
"
use
$2
shift
2
"
$@
"
leave
verbose
"run
start
"
verbose
"run
end
"
exit
0
elif
[
"
$1
"
=
'use'
]
;
then
verbose
"use
start
"
verbose
"use
begin
"
if
[
-n
"
$ZSH_VERSION
"
]
;
then
if
[
-o
NO_IGNORE_EOF
]
;
then
export
VCSH_NO_IGNORE_EOF
=
1
...
...
@@ -121,11 +121,11 @@ elif [ "$1" = 'use' ]; then
fi
use
$2
[
-n
"
$ZSH_VERSION
"
]
&&
[
"
$USER
"
=
richih
]
&&
buildPS1
verbose
"use
stop
"
verbose
"use
end
"
exit
0
elif
[
"
$1
"
=
'clone'
]
;
then
verbose
"clone
start
"
verbose
"clone
begin
"
GIT_REMOTE
=
"
$2
"
REPO_NAME
=
"
$3
"
[
-z
"
$REPO_NAME
"
]
&&
REPO_NAME
=
$(
basename
$GIT_REMOTE
.git
)
...
...
@@ -142,7 +142,7 @@ elif [ "$1" = 'clone' ]; then
echo
"
$SELF
: error:
$object
exists."
&&
VCSH_CONFLICT
=
1
;
done
[
-n
"
$VCSH_CONFLICT
"
]
&&
[
"
$VCSH_CONFLICT
"
=
'1'
]
&&
echo
"
$SELF
: fatal: will stop after fetching and not try to merge!
\n
"
&&
exit
3
git merge origin/master
...
...
@@ -150,22 +150,22 @@ elif [ "$1" = 'clone' ]; then
verbose
"clone end"
elif
[
"
$1
"
=
'init'
]
;
then
verbose
"init
start
"
verbose
"init
begin
"
export
REPO_NAME
=
"
$2
"
export
GIT_DIR
=
"
$VCSH_BASE
/
$REPO_NAME
.git"
init
vcsh use
$REPO_NAME
verbose
"init
stop
"
verbose
"init
end
"
elif
[
"
$1
"
=
'exit'
]
;
then
verbose
"exit
start
"
if
[
-n
"
$ZSH_VERSION
"
]
&&
[
-n
"
$VCSH_NO_IGNORE_EOF
"
]
;
then
verbose
"exit
begin
"
if
[
-n
"
$ZSH_VERSION
"
]
&&
[
"
$VCSH_NO_IGNORE_EOF
"
=
'1'
]
;
then
unset
VCSH_NO_IGNORE_EOF
setopt NO_IGNORE_EOF
fi
leave
[
-n
"
$ZSH_VERSION
"
]
&&
[
"
$USER
"
=
richih
]
&&
buildPS1
verbose
"exit
stop
"
verbose
"exit
end
"
exit
0
else
...
...
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