Archive

Archive for April, 2009

Wanted for GIT to ignore some files

April 16th, 2009

I am developing a project in Flex-Java using Adobe Flex Builder. I am using GIT for versioning control. GIT takes control of every change I have made in the source code from the las commit. However I don’t want GIT taking care  of changes in .swf and .class files. I am concern about the source code and not the end-binary-result.

Each time I make a change in a .java or .mxml file GitX displays for a possible commit all the generated related files. Which I would like to avoid.

I found this article called Configure git to globally ignore files which become very helpful to solve this kind of situation.

Git

Using GIT

April 16th, 2009

Using GIT for version control system is really very easy. The best guide I found of how t use Git is website Git for the lazy. I was surprise how easy to use GIT is. If you need another place to check for how to use GIT you can try Everyday GIT with 20 commands or So

The use of GIT become even easier  with tools like GitX. It is a Max OS X application which provided the possibility to see the the changes history and also commit the current changes to GIT. How it worked? Basically  after making the changes in your code go the Commit View of GitX. It will show the new changes you had made. Choose what changes you want to commit into GIT. Include your message, and click in the Commit button. And this is it. You can go to the History Browser to see how your code had been growing.

GitX – Commit View

GitX – History Browser

Another tool which I have not yet tested but looks nice is github. The advertise strength of this one is social coding.

Git