diff options
author | Cody Hiar <cody.hiar@investopedia.com> | 2016-08-02 14:12:34 -0600 |
---|---|---|
committer | Cody Hiar <cody.hiar@investopedia.com> | 2016-08-02 14:14:15 -0600 |
commit | aa657395fd0e902c45b6d8117f999fb85e60690a (patch) | |
tree | a289cf8dccf75993e0c4986ef529585842098876 /Dockerfile | |
parent | 02f67de03f8b293647969eba79ccc58ea0704904 (diff) |
Adding git config to set my identity, just easier.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -28,6 +28,10 @@ RUN add-apt-repository ppa:neovim-ppa/unstable -y RUN apt-get update && apt-get install -y \ neovim +# Set git stuff +RUN git config --global user.email "codyfh@gmail.com" +RUN git config --global user.name "Cody Hiar" + ##################################### # Python Linting ##################################### |