Reputation: 1362
I am totally lost on git, I read the docs but do not have a clue. I have been using CVS for decades and just need some help getting setup.
How do I get eclipse to commit this to the git repository on my linux machine?
I have no idea what people see in this program, I was never confused with CSV but now noone supports or allows CVS anymore.
Upvotes: 3
Views: 820
Reputation: 12948
You may consider local repository as a "smart" working directory. It is still possible to have centralized integration repository, similar to central repository in CVS with slightly different terms:
Real magic begins after repository is cloned to the local computer. You get working directory and a lot of new opportunities.
Upvotes: 1
Reputation: 8172
The design goals of a git are explained well in The git parable
It may help with the required paradigm shift moving from CVS.
git was developed for the purpose of controlling submissions to the Linux kernel so the design goal of supporting the version control a large distributed project was a key one.
Upvotes: 1
Reputation: 129762
Git is a distributed version control system (DVCS). This means you will have a repository on your local machine. You will need to read up on "pushing", "fetching" and "pulling". This is all under the idea of "remotes" - how you tell one repository where another one lives.
You can expect that there will be a .git folder in the root of your working directory.
I would do a quick read up on git at any of the following places:
gitready.com
progit.org/book
git-scm.com
There is also the #git channel on freenode.
Upvotes: 0
Reputation: 212634
You need to change your thinking. In particular, you say "Further it wants to make the repository where I have the project in the same directories. That cannot be right". But it is right. The repository is local. That is one of the fundamental differences from CVS. Make all of your changes in the local repository, and only push to a remote when you want to publish.
Upvotes: 1