Posts Tagged ‘Git’

EDDIC 0.5 : Functions and foreach

I’m pleased to release the version 0.5. of the EDDI Compiler.
This new version introduced the first version of function calls. The function can take several parameters but cannot return anything at this moment. A version of foreach loop is now available in the language.
You can also declare variables globally in the source code. The global variables are stored in the .data section of the …

How to install git-flow on Linux

One week ago, I started using git-flow on eddic. This is a collection of Git extensions to easily follow a branching-model convention for a Git project. I will try to describe this project later on this blog.
You can install git-flow using this simple command:

wget –no-check-certificate -q -O – https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh

I recommend you to install a script to autocomplete the git-flow commands and …

Git Tip : Restore a deleted tag

A little tip that can be very useful, how to restore a deleted Git tag.
If you juste deleted a tag by error, you can easily restore it following these steps. First, use
git fsck –unreachable | grep tag
then, you will see the unreachable tag. If you have several tags on the list, use
git show KEY
to found the good tag and finally, when you …

My Java Benchmarks on GitHub

Hi,
I’ve created a new github repository for my Java Benchmarks : java-benchmarks
From now all my benchmarks will be pushed to this repository. This is more simple for me to manage and more secure also.
At this time, there is seven benchmarks on the repository :

Closest Pair Search Benchmark : A benchmark to test two closest pair point search algorithms : the naive one and the …

Version Control with Git – Book Review

After I had chosen to switch to Git, I thought the time has become to read a complete book on the subject to understand the concepts of Git from the base to further level.
So I chose “Version control with Git”, from Jon Loeliger
I just finished to read it, so I will try to give my impressions about this book on this post.
Version control with …

Tip : How to solve “agent admitted failure to sign using the key” error ?

A very simple tip that can save a lot of time.
When i wanted to do a git clone, I had the given error :
Agent admitted failure to sign using the key.
Permission denied (publickey).
I found that this is an SSH error. It’s really easy to solve, just logout and login, and all will work perfectly

JTheque is migrating to Git

Hi,
Some informations about the current state of JTheque. I’m currently migrating it from SVN to Git. Actually the projet is hosted at Developpez.com, a french community. For more visibility, i wanted to host it in an english website. After several days of comparative, I chosen Github has host. Because i chose Git, i think it’s the best and easier community to share projects using …