Mudanças entre as edições de "Git"

De WikiLICC
Ir para: navegação, pesquisa
m (GitHub: How to clone GitHub repo? How to push to Github? How to get files from GitHub ?)
m (How to setup up GitHub to your local machine ?)
Linha 10: Linha 10:
 
# How to get those changes FROM GitHub
 
# How to get those changes FROM GitHub
  
==How to setup up GitHub to your local machine ?==
+
== Como configurar GitHub na sua maquina local ==
  
First download Git and set your SSH key.
+
# Baixe e instale a última versão do '''git'''
* See here http://help.github.com/linux-set-up-git/
+
# Abra uma terminal e digite
 +
$ git config --global user.name "SEU NOME"
 +
$ git config --global user.email "email@google.com"
 +
$ git config --list
 +
# Aumente o tempo
 +
$ git config --global credential.helper 'cache --timeout=3600'
 +
# No seu diretório
 +
$ cd
 +
$ ssh-keygen -t rsa -b 4096 -C "dagoberto.justo@gmail.com"
 +
 
 +
 
 +
* veja http://help.github.com/linux-set-up-git/
  
 
==How to clone your repo to your local machine ?==
 
==How to clone your repo to your local machine ?==

Edição das 00h41min de 15 de julho de 2016

Pequeno lembrete de como usar git e github.

Ver http://myprogrammingblog.com/2012/01/20/github-how-clone-github-repo-how-to-push-to-github-how-to-get-files-from-github-ubuntu/

GitHub: How to clone GitHub repo? How to push to Github? How to get files from GitHub ?

Passos:

  1. How to set up and clone repo to your local machine avoiding message: Permission denied (publickey).
  2. How to transfer all changes you are making INTO Github
  3. How to get those changes FROM GitHub

Como configurar GitHub na sua maquina local

  1. Baixe e instale a última versão do git
  2. Abra uma terminal e digite
$ git config --global user.name "SEU NOME"
$ git config --global user.email "email@google.com"
$ git config --list
  1. Aumente o tempo
$ git config --global credential.helper 'cache --timeout=3600'
  1. No seu diretório
$ cd
$ ssh-keygen -t rsa -b 4096 -C "dagoberto.justo@gmail.com"


How to clone your repo to your local machine ?

  • Find your repo address in your GitHub repo page;
  • Copy the address in the box (git@github.com.../...git)
  • In terminal
> cd /LocalRepos
> git clone ADDRESS_YOU_COPIED_FOR_SSH
> ls
> cd /Repo

How to transfer all changes you are making INTO Github ?

Existem 3 passos:

  • Adicione os arquivos:
> cd /Repo
/Repo> git add .    # . para todo o diretorio
  • Commint suas trocas:
> git commit  -m "Mensagem do que foi atualizado"
  • Push suas trocas para o servidor:
> git push

Verifique que as trocas estão no site github.

How to get those changes FROM GitHub ?

> git checkout
> git pull

Estes comandos trarão baixarão todas as novas atualizações do GitHub para sua máquina.