Estou cansado de copiar manualmente a pasta do meu projeto para a minha pasta DropBox. Por favor, SO Jedi, ensina-me os caminhos do GIT?

2

Estou trabalhando em um projeto pessoal. Não é muito grande e eu sou o único trabalhando nisso.

Qual é a maneira básica de fazer com que o GIT salve meu projeto de trabalho para backup? Como o GIT verifica se é uma versão de trabalho, ou eu tenho que clicar com o botão direito do mouse na pasta e "commitá-lo" similar ao Tortoise SVN?

Não estou interessado nos recursos mais avançados porque, francamente, não os utilizarei ainda. Eu só preciso saber como instalá-lo no meu Windows 7 Machine, e dizer: "Ei mano, ver este projeto? Mantenha o controle sobre isso, ok?"

Obrigado por isso. Espero que vocês possam me ensinar grandes coisas, mais uma vez. : D

    
por Papuccino1 03.01.2010 / 17:00

2 respostas

2

Eu recomendo que você instale Git Extensions , que inclui tudo que você precisa, uma GUI fácil de usar, além de um Visual Plug-in do Studio.

    
por 03.01.2010 / 17:06
0

What is the basic way to have GIT save my working project to backup?

Isso seria empurrar a pasta compartilhada gerenciada pelo DropBox.
Veja esta entrada do blog como um exemplo prático

From the project directory of the project you want to share, type:

bash$ git clone --bare . ~/Dropbox/Shared/MySharedProject.git

Note: Keep in mind that I’m assuming you already have this project under Git version control.
The –bare keyword we used in the clone command means that we simply want to create a directory that contains the contents of the .git directory in your project directory and not the actual workspace.
The .git directory contains all of your code and changes to everything you need is there–it’s just not the actual workspace where xcode works from.

Create a remote (alias) for the newly cloned project by typing:

 bash$ git remote add sharedproject ~/Dropbox/Shared/MySharedProject.git

Now you can push any code changes from your working directory to the cloned directory, which, since it is in your Dropbox will automatically be uploaded to the drop box and downloaded by any other computers you have that can access Dropbox.
First you need to commit any changes in your working directory with the following command.

bash$ git commit -a -m "Commit message"

Then you need to push the changes to the remote with the following.

bash$ git push sharedproject master

This pushes your changes to the cloned repository which is in your Dropbox directory. As soon as you do this, you should see the Dropbox icon in your menu bar change to the ’synchronizing’ icon. If your change is small, it will only change for a split second so you’ll have to watch it closely to see that happen.
Once your files are committed and have been pushed to your cloned repository, you can now pull the project from another computer.

    
por 03.01.2010 / 17:20

Tags