Posts published by: Yoann Gesquiere

Let's try Jenkins

Currently, I use Travis CI for my github projects. Well, it does the job, but I wanted to try another CI.
Jenkins is used where I work, so let's give it a try.

I chose to use the docker version:

docker pull jenkins
mkdir jenkins
docker run -d -p ...

How to use a global gitignore file

If you want to exclude files for all your git repositories, you can use a global .gitignore file. It can be useful, for example, to exclude IDE projects files in all your projects without commiting them in your repositories.

To tell git you want to have a global gitignore file ...