Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
UserConfig
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
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
Jiří Kalvoda
UserConfig
Repository
fc5b88b2a53ffa8dc8fdb4953c6487f6d8a0e068
Select Git revision
Selected
fc5b88b2a53ffa8dc8fdb4953c6487f6d8a0e068
Branches
1
master
default
protected
2 results
userconfig
git-clupdate
git-clupdate
Find file
Blame
Edit
Open in Web IDE
.
Quickly and easily edit multiple files in your project.
Edit single file
Edit this file only.
File actions
Find file
t
Blame
Copy permalink
y
Copy contents
Open raw
Download
TEATIMER build
Jiří Kalvoda
authored
Dec 6, 2022
423857e3
History
423857e3
Dec 6, 2022
History
git-clupdate
83 B
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if
[[
-d
$2
]]
then
(
cd
$2
;
git pull
$1
)
else
git clone
$1
$2
fi