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
1536966c
Commit
1536966c
authored
11 years ago
by
Richard Hartmann
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into debian
parents
6b2094ea
25826512
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
changelog
+8
-0
8 additions, 0 deletions
changelog
doc/vcsh.1.ronn
+8
-3
8 additions, 3 deletions
doc/vcsh.1.ronn
vcsh
+16
-2
16 additions, 2 deletions
vcsh
with
32 additions
and
5 deletions
changelog
+
8
−
0
View file @
1536966c
2013-07-24 Richard Hartmann <richih.mailinglist@gmail.com>
* Release 1.20130724
* Add support for `vcsh status`
* Improve output of `vcsh pull`
* Improve output of `vcsh push`
* Minor documentation improvements
2013-07-23 Richard Hartmann <richih.mailinglist@gmail.com>
* Release 1.20130723
...
...
This diff is collapsed.
Click to expand it.
doc/vcsh.1.ronn
+
8
−
3
View file @
1536966c
...
...
@@ -29,6 +29,8 @@ vcsh(1) - Version Control System for $HOME - multiple Git repositories in $HOME
`vcsh` run <repo> <shell command>
`vcsh` status
`vcsh` upgrade <repo>
`vcsh` version
...
...
@@ -125,6 +127,9 @@ an interactive user.
This is needed to support mr and other scripts properly and of no concern to
an interactive user.
* status:
Show statuses of all vcsh repositories.
* upgrade:
Upgrade repository to currently recommended settings.
...
...
@@ -164,16 +169,16 @@ executed in the context of your shell.
Interesting knobs you can turn:
* <$VCSH_GITIGNORE>:
Can be <exact>, <
recursive>, or <non
e>.
Can be <exact>, <
none>, or <recursiv
e>.
<exact> will seed the repo-specific ignore file with all file and directory
names which `git ls-files` returns.
<none> will not write any ignore file.
<recursive> will descend through all directories recursively additionally to
the above.
<none> will not write any ignore file.
Defaults to <exact>.
Less interesting knobs you could turn:
...
...
This diff is collapsed.
Click to expand it.
vcsh
+
16
−
2
View file @
1536966c
...
...
@@ -24,7 +24,7 @@ basename() {
}
SELF
=
$(
basename
$0
)
VERSION
=
'1.2013072
3
'
VERSION
=
'1.2013072
4
'
fatal
()
{
echo
"
$SELF
: fatal:
$1
"
>
&2
...
...
@@ -106,6 +106,7 @@ help() {
<newname> Rename repository
run <repo>
\\
<command> Use this repository
status Show statuses of all vcsh repositories
upgrade <repo> Upgrade repository to currently recommended settings
version Print version information
which <substring> Find substring in name of any tracked file
...
...
@@ -233,6 +234,7 @@ pull() {
export
GIT_DIR
=
"
$VCSH_REPO_D
/
$VCSH_REPO_NAME
.git"
use
git pull
echo
done
hook post-pull
}
...
...
@@ -244,6 +246,7 @@ push() {
export
GIT_DIR
=
"
$VCSH_REPO_D
/
$VCSH_REPO_NAME
.git"
use
git push
echo
done
hook post-push
}
...
...
@@ -273,6 +276,16 @@ run() {
hook post-run
}
status
()
{
for
VCSH_REPO_NAME
in
$(
list
)
;
do
echo
"
$VCSH_REPO_NAME
:"
export
GIT_DIR
=
"
$VCSH_REPO_D
/
$VCSH_REPO_NAME
.git"
use
git status
--short
--untracked-files
=
'no'
echo
done
}
upgrade
()
{
hook pre-upgrade
use
...
...
@@ -373,7 +386,8 @@ elif [ "$1" = 'delete' ] ||
elif
[
"
$1
"
=
'list'
]
||
[
"
$1
"
=
'list-tracked'
]
||
[
"
$1
"
=
'pull'
]
||
[
"
$1
"
=
'push'
]
;
then
[
"
$1
"
=
'push'
]
||
[
"
$1
"
=
'status'
]
;
then
export
VCSH_COMMAND
=
"
$1
"
elif
[
-n
"
$2
"
]
;
then
export
VCSH_COMMAND
=
'run'
...
...
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