Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
user-scripts
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Neurorobotics Platform
user-scripts
Commits
17179f64
Commit
17179f64
authored
Jul 15, 2021
by
Ugo Albanese
Browse files
Options
Downloads
Patches
Plain Diff
[NRRPLT-0000] Suppress pushd/popd output
parent
5bc3e87d
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
nrp_functions
+2
-2
2 additions, 2 deletions
nrp_functions
with
2 additions
and
2 deletions
nrp_functions
+
2
−
2
View file @
17179f64
...
@@ -254,7 +254,7 @@ function nrp_rebase {
...
@@ -254,7 +254,7 @@ function nrp_rebase {
echo
$i
echo
$i
echo
-------------------------
echo
-------------------------
sleep
2
sleep
2
pushd
"
$i
"
||
{
echo
NOT FOUND. You might want to run the clone-all-repos script to get this repo
;
exit
1
;
}
pushd
"
$i
"
>
/dev/null 2>&1
||
{
echo
NOT FOUND. You might want to run the clone-all-repos script to get this repo
;
exit
1
;
}
# in case there are unstaged changes we prompt the user to stash them
# in case there are unstaged changes we prompt the user to stash them
if
git status
--short
|
grep
-v
"??"
>
/dev/null 2>&1
if
git status
--short
|
grep
-v
"??"
>
/dev/null 2>&1
...
@@ -279,7 +279,7 @@ function nrp_rebase {
...
@@ -279,7 +279,7 @@ function nrp_rebase {
git pull
--rebase
||
{
echo
ERROR
;
exit
1
;
}
git pull
--rebase
||
{
echo
ERROR
;
exit
1
;
}
popd
popd
>
/dev/null 2>&1
done
done
}
}
...
...
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
sign in
to comment