Re: [libposix-development] bzip2
Status: Pre-Alpha
Brought to you by:
hdante
From: Henrique A. <hd...@gm...> - 2009-07-16 17:22:15
|
2009/7/16 Chris Forbes <ch...@fa...>: > I think I've finally got git figured out (unwiring my brain from using > SVN :(), > so I'll do some of the other functions for bzip2 after work. I have to write a git howto for the project, but I won't have time in the next weeks. The task is at TaskFreak site. Basically, git has two main differences from svn (that make things look complicated), which are multiple repositories (as a natural part of the development) and somewhat different terminology. So, to work with git you first need to recreate your own repository. Then you'll work by commiting frequently to your local repository. When the code is in a usable state for everyone, you merge your repository with SF repository. The commands are the following: # Create a full local clone of the remote repository (and setup remote merges) git clone ssh://hd...@li.../gitroot/libposix # Merge the remote repository in your local repository git pull # Merge the remote repository (other than SF) in your local repository git pull http://remote.repository.com/ # Edit code editor source1 source2 source3 (git is not used) # View list of changed files git status # View code changes git diff # Add files to commit git add source1/dir1 # Remove files git rm source1 # Move files git mv source1 dest1 # View code changes that were marked as added to commit (with git add) git diff HEAD # Commit (to the local repository) git commit # View the commit log git log # Merge the local repository to the remote repository (upload code to SF) git push > > -- Chris > > -----Original Message----- > From: Henrique Almeida [mailto:hd...@gm...] > Sent: Thursday, 16 July 2009 3:18 p.m. > To: lib...@li... > Subject: [libposix-development] bzip2 > > I've started implementing functions required by bzip2. I'm trying to > implement them as simple as possible, with only the functionality > required by bzip2. Example functions are fileno() and strerror(). I'll > begin to implement open() in the next days. > > -- > Henrique Dante de Almeida > hd...@gm... > > ------------------------------------------------------------------------ > ------ > Enter the BlackBerry Developer Challenge > This is your chance to win up to $100,000 in prizes! For a limited time, > > vendors submitting new applications to BlackBerry App World(TM) will > have > the opportunity to enter the BlackBerry Developer Challenge. See full > prize > details at: http://p.sf.net/sfu/Challenge > _______________________________________________ > Libposix-development mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libposix-development > > ------------------------------------------------------------------------------ > Enter the BlackBerry Developer Challenge > This is your chance to win up to $100,000 in prizes! For a limited time, > vendors submitting new applications to BlackBerry App World(TM) will have > the opportunity to enter the BlackBerry Developer Challenge. See full prize > details at: http://p.sf.net/sfu/Challenge > _______________________________________________ > Libposix-development mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libposix-development > -- Henrique Dante de Almeida hd...@gm... |