Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitflow
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
gitflow
Commits
4d22227a
Commit
4d22227a
authored
Jan 26, 2010
by
Benedikt Böhm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make git fetch silent
parent
e2fa4913
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
git-flow-feature
git-flow-feature
+5
-5
git-flow-hotfix
git-flow-hotfix
+3
-3
git-flow-release
git-flow-release
+2
-2
git-flow-support
git-flow-support
+1
-1
No files found.
git-flow-feature
View file @
4d22227a
...
...
@@ -56,7 +56,7 @@ cmd_start() {
gitflow_check_clean_working_tree
gitflow_require_branch_absent $BRANCH
if [ "$BASE" = "$DEVELOP_BRANCH" ]; then
git fetch $ORIGIN $DEVELOP_BRANCH
git fetch
-q
$ORIGIN $DEVELOP_BRANCH
gitflow_require_branches_equal $DEVELOP_BRANCH $ORIGIN/$DEVELOP_BRANCH
fi
...
...
@@ -80,7 +80,7 @@ cmd_finish() {
# sanity checks
gitflow_check_clean_working_tree
gitflow_require_branch $BRANCH
git fetch $ORIGIN
git fetch
-q
$ORIGIN
if has $ORIGIN/$BRANCH $REMOTE_BRANCHES; then
gitflow_require_branches_equal $BRANCH $ORIGIN/$BRANCH
fi
...
...
@@ -116,12 +116,12 @@ cmd_publish() {
# sanity checks
gitflow_check_clean_working_tree
gitflow_require_branch $BRANCH
git fetch $ORIGIN
git fetch
-q
$ORIGIN
gitflow_require_branch_absent $ORIGIN/$BRANCH
# create remote branch
git push $ORIGIN $BRANCH:refs/heads/$BRANCH
git fetch $ORIGIN
git fetch
-q
$ORIGIN
# configure remote tracking
git config branch.$BRANCH.remote $ORIGIN
...
...
@@ -142,7 +142,7 @@ cmd_track() {
# sanity checks
gitflow_check_clean_working_tree
gitflow_require_branch_absent $BRANCH
git fetch $ORIGIN
git fetch
-q
$ORIGIN
gitflow_require_branch $ORIGIN/$BRANCH
# create tracking branch
...
...
git-flow-hotfix
View file @
4d22227a
...
...
@@ -49,7 +49,7 @@ cmd_start() {
# sanity checks
gitflow_check_clean_working_tree
git fetch $ORIGIN
git fetch
-q
$ORIGIN
gitflow_require_branches_equal $MASTER_BRANCH $ORIGIN/$MASTER_BRANCH
gitflow_require_branch_absent $BRANCH
...
...
@@ -75,8 +75,8 @@ cmd_finish() {
# sanity checks
gitflow_check_clean_working_tree
git fetch $ORIGIN $MASTER_BRANCH
git fetch $ORIGIN $DEVELOP_BRANCH
git fetch
-q
$ORIGIN $MASTER_BRANCH
git fetch
-q
$ORIGIN $DEVELOP_BRANCH
gitflow_require_branches_equal $MASTER_BRANCH $ORIGIN/$MASTER_BRANCH
gitflow_require_branches_equal $DEVELOP_BRANCH $ORIGIN/$DEVELOP_BRANCH
...
...
git-flow-release
View file @
4d22227a
...
...
@@ -49,7 +49,7 @@ cmd_start() {
# sanity checks
gitflow_check_clean_working_tree
git fetch $ORIGIN
git fetch
-q
$ORIGIN
gitflow_require_branches_equal $DEVELOP_BRANCH $ORIGIN/$DEVELOP_BRANCH
gitflow_require_branch_absent $BRANCH
...
...
@@ -75,7 +75,7 @@ cmd_finish() {
# sanity checks
gitflow_check_clean_working_tree
git fetch $ORIGIN
git fetch
-q
$ORIGIN
gitflow_require_branches_equal $MASTER_BRANCH $ORIGIN/$MASTER_BRANCH
gitflow_require_branches_equal $DEVELOP_BRANCH $ORIGIN/$DEVELOP_BRANCH
...
...
git-flow-support
View file @
4d22227a
...
...
@@ -44,7 +44,7 @@ cmd_start() {
# publish branch
git push $ORIGIN $BRANCH:refs/heads/$BRANCH
git fetch $ORIGIN
git fetch
-q
$ORIGIN
git config branch.$BRANCH.remote $ORIGIN
git config branch.$BRANCH.merge refs/heads/$BRANCH
git co $BRANCH
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment