fix git printing help message when running 'git init' (#74)

Summary: Pull Request resolved: https://github.com/facebookexperimental/eden/pull/74

Reviewed By: krallin

Differential Revision: D26449960

Pulled By: lukaspiatkowski

fbshipit-source-id: aebecd423c657f1d7c772845d0b212e7de6f250c
This commit is contained in:
Lukasz Piatkowski 2021-02-15 07:06:36 -08:00 committed by Facebook GitHub Bot
parent 061c6e9b8b
commit 711abbd80d
4 changed files with 4 additions and 8 deletions

View File

@ -12,8 +12,7 @@
# Setup git repsitory
$ mkdir "$GIT_REPO"
$ cd "$GIT_REPO"
$ git init
Initialized empty Git repository in $TESTTMP/repo-git/.git/
$ git init -q
$ echo "this is file1" > file1
$ git add file1
$ git commit -am "Add file1"

View File

@ -12,8 +12,7 @@
# Setup git repsitory
$ mkdir "$GIT_REPO"
$ cd "$GIT_REPO"
$ git init
Initialized empty Git repository in $TESTTMP/repo-git/.git/
$ git init -q
$ echo "this is file1" > file1
$ git add file1
$ git commit -am "Add file1"

View File

@ -86,8 +86,7 @@ Before the change
$ export GIT_REPO=git_repo
$ mkdir "$GIT_REPO"
$ cd "$GIT_REPO"
$ git init
Initialized empty Git repository in $TESTTMP/git_repo/.git/
$ git init -q
$ echo "this is file1" > file1
$ mkdir file2_repo
$ cd file2_repo

View File

@ -34,8 +34,7 @@
# Setup git repository
$ mkdir "$GIT_REPO"
$ cd "$GIT_REPO"
$ git init
Initialized empty Git repository in $TESTTMP/repo-git/.git/
$ git init -q
$ echo "this is file1" > file1
$ mkdir file2_repo
$ cd file2_repo