Skip to main content

Home/ foograde/ Group items tagged git

Rss Feed Group items tagged

Adán Muguiro

Git - DreamHost - 0 views

  • Setup One: For the Impatient If git is already working on your server (it was on mine), this will get you up and running ASAP. # Setup SSH keys [local ~]$ ssh-keygen -t rsa [local ~]$ ssh-copy-id [user@]host [local ~]$ eval `ssh-agent` [local ~]$ ssh-add # Create the local repository [local ~]$ cd project [local project]$ git init [local project]$ touch .gitignore [local project]$ git add . [local project]$ git commit # Create a bare remote repository [local project]$ ssh [user@]host [host ~]$ mkdir project.git [host ~]$ cd project.git [host project.git]$ git --bare init [host project.git]$ exit # Push to the remote repository [local project]$ git remote add origin ssh://[user@]host/~/project.git [local project]$ git push origin master [local project]$ git branch --set-upstream master origin/master # Clone from the remote repository [other ~]$ git clone ssh://[user@]host/~/project.git
  •  
    Configuración de Git en Dreamhost
Fernando Vega

Pro Git - Pro Git 2.5 Fundamentos de Git Trabajando con repositorios remotos - 3 views

  •  
    Libro de ProGit
Fernando Vega

Mi cuaderno de trabajo: Git: El fichero .gitignore - 0 views

  • $ cat .gitignore*.[oa] # Ignoramos todos los archivos terminados en o o en a*~ # Ignoramos todos los archivos terminados en ~/TODO # Ignoramos la carpeta TODO. Si existe un subdirectorio llamado TODO no se ignorabuild/ # Ignoramos todos los ficheros del directorio build/doc/*.txt # Ignoramos todos los ficheros terminados en txt del directorio doc
    • Fernando Vega
       
      git ignore
Fernando Vega

EGit - 1 views

  •  
    plugin para llevar el control de versiones en eclipse con git
1 - 7 of 7
Showing 20 items per page