Skip to content

Commit

Permalink
remove unknown option `recent'
Browse files Browse the repository at this point in the history
  • Loading branch information
sushildeep authored Dec 19, 2023
1 parent 2956597 commit 177b5ad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/initialise_repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ if [ -d $REPO_DIR -a ! -L $REPO_DIR ]; then
echo "${REPO_DIR} exists.";
cd $REPO_DIR && \
git reset --hard && \
git fetch --all && \
git fetch --recent;
git fetch --all;
else
git clone --depth=1 --no-single-branch $REPO_URL $REPO_ID && \
cd $REPO_DIR && \
git fetch --recent && \
git reset --hard;
fi

0 comments on commit 177b5ad

Please sign in to comment.