A paper about the Gröbner basis of a Catalan path ideal.
Authors: Nantel Bergeron, Xavier Mootoo, Vedarth Vyas
proof.tex: the paper source is on TeX
refrences.bib: the referenced sources.
> git pull
[Now modify the file and do your work, NO MORE PULL]
> git status
[You see that the file you modified need to be committed]
> git add <file>
add the file(s) that you modified, you see them in red in status
> git commit
this will open a editor. add a line saying what you have done, close and save
> git push
[Make sure the push happen, there are 3 know problems
(a) the server does not respond and the push stall,
(b) there are conflict, but automerge solve them for you, the command "git commit -a" is done for you
(c) There are conflict to resolves:
Go in your file and resolves the conflicts
START AGAIN AT "git status"
git push (AGAIN)]