Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-08-22 10:16:32 +0400
committerJunio C Hamano <gitster@pobox.com>2010-08-22 10:16:32 +0400
commitc307fbfdc403a59dc33209677a02bb5e88487185 (patch)
treee2afe62da00ad772b134bb62f99fc3ac937dc3cf
parentf9c33605700e37b75279ed6ce4bffaad3eb0cf10 (diff)
parent0eb032d86c99ac8f23435ad5ea9f2b83f1be744f (diff)
Merge branch 'maint'
* maint: t7403: add missing &&'s Tell ignore file about generate files in /gitweb/static
-rw-r--r--.gitignore2
-rwxr-xr-xt/t7403-submodule-sync.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 14e2b6bde9..fcdd822d8a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -158,7 +158,7 @@
/gitk-git/gitk-wish
/gitweb/GITWEB-BUILD-OPTIONS
/gitweb/gitweb.cgi
-/gitweb/gitweb.min.*
+/gitweb/static/gitweb.min.*
/test-chmtime
/test-ctype
/test-date
diff --git a/t/t7403-submodule-sync.sh b/t/t7403-submodule-sync.sh
index 7538756487..bade2179b1 100755
--- a/t/t7403-submodule-sync.sh
+++ b/t/t7403-submodule-sync.sh
@@ -14,7 +14,7 @@ test_expect_success setup '
echo file > file &&
git add file &&
test_tick &&
- git commit -m upstream
+ git commit -m upstream &&
git clone . super &&
git clone super submodule &&
(cd super &&
@@ -42,7 +42,7 @@ test_expect_success 'change submodule url' '
) &&
mv submodule moved-submodule &&
(cd super &&
- git config -f .gitmodules submodule.submodule.url ../moved-submodule
+ git config -f .gitmodules submodule.submodule.url ../moved-submodule &&
test_tick &&
git commit -a -m moved-submodule
)