Skip to content

Commit acfb554

Browse files
authored
added git config user.email and user.name
These can and should be changed, but defaults in case you don't set them
1 parent 79ffed4 commit acfb554

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ COPY _functions.sh /root/_functions.sh
88
COPY svn2github.sh /root/svn2github.sh
99
COPY settings.ini /root/settings.ini
1010

11-
RUN yum -y localinstall https://centos7.iuscommunity.org/ius-release.rpm &&\
12-
yum -y install git2u-svn git2u git-lfs bc && yum clean all &&\
13-
rm -fr /var/cache/yum && chmod +x /root/svn2github.sh
11+
RUN yum -y localinstall https://centos7.iuscommunity.org/ius-release.rpm && \
12+
yum -y install git2u-svn git2u git-lfs bc && yum clean all && \
13+
rm -fr /var/cache/yum && chmod +x /root/svn2github.sh && \
14+
git config --global user.name "SVN to GitHub" && git config --global \
15+
user.email "svn2github@example.com"
1416

1517
WORKDIR /root
1618

0 commit comments

Comments
 (0)