framework&tools/git
Git 사용법
뚜벅이조
2012. 3. 14. 16:39
Git Quick Start
ref:
http://www.git-scm.com/
http://www.eclipse.org/egit/download/
Cloning and Creating a Patch
$ git clone git://github.com/git/hello-world.git $ cd hello-world $ (edit files) $ git add (files) $ git commit -m 'Explain what I changed' $ git format-patch origin/master
Creating and Commiting
$ cd (project-directory) $ git init $ (add some files) $ git add . $ git commit -m 'Initial commit'
ref:
http://www.git-scm.com/
http://www.eclipse.org/egit/download/