-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
122 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ Eine Versionsverwaltung erfasst die Änderungen einer Datei oder eines Verzeichn | |
* Verteilte Versionsverwaltung konzentriert sich auf das Teilen der Änderungen. Jede Änderung hat eine eindeutige ID. | ||
* Verteilte Systeme haben keine vorbestimmte Struktur. Ein SVN-ähnliches, zentrales System wäre mit Git ebenso umsetzbar. | ||
|
||
[Weiterführende Informationen](http://git-scm.com/book/en/Getting-Started-About-Version-Control) | ||
[Weiterführende Informationen](https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control) | ||
|
||
### Warum Git? | ||
|
||
|
@@ -50,7 +50,7 @@ Ein Repository besteht in Git aus dem .git-Verzeichnis und dem Arbeitsverzeichni | |
### .git-Verzeichnis (Teil des Repositorys) | ||
|
||
Das .git-Verzeichnis enthält alle Einstellungen, Logs, Branches, den HEAD und mehr. | ||
[Ausführliche Übersicht](http://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
[Ausführliche Übersicht](https://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
|
||
### Arbeitsverzeichnis (Teil des Repositorys) | ||
|
||
|
@@ -74,12 +74,6 @@ HEAD ist ein Pointer auf den aktuellen Branch. Ein Repository hat nur einen *akt | |
|
||
Ein *head* ist ein Pointer, der auf einen beliebigen Commit zeigt. Ein Repository kann eine beliebige Zahl von *heads* enthalten. | ||
|
||
### Konzeptionelle Hintergründe | ||
|
||
* [Git For Computer Scientists](http://eagain.net/articles/git-for-computer-scientists/) | ||
* [Git For Designers](http://hoth.entp.com/output/git_for_designers.html) | ||
|
||
|
||
## Befehle | ||
|
||
|
||
|
@@ -104,7 +98,7 @@ $ git config --global user.email "[email protected]" | |
$ git config --global user.name "My Name" | ||
``` | ||
|
||
[Mehr über git config](http://git-scm.com/docs/git-config) | ||
[Mehr über git config](https://git-scm.com/docs/git-config) | ||
|
||
### help | ||
|
||
|
@@ -255,7 +249,7 @@ $ git grep -e 'arrayListName' --and \( -e add -e remove \) | |
``` | ||
|
||
Google ist dein Freund; für mehr Beispiele: | ||
[Git Grep Ninja](http://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja) | ||
[Git Grep Ninja](https://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja) | ||
|
||
### log | ||
|
||
|
@@ -338,7 +332,7 @@ Nimm alle Änderungen, die in einem Branch durch Commits vorgenommen wurden, und | |
$ git rebase master experimentBranch | ||
``` | ||
|
||
[Weiterführende Informationen](http://git-scm.com/book/en/Git-Branching-Rebasing) | ||
[Weiterführende Informationen](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) | ||
|
||
### reset (mit Vorsicht einsetzen) | ||
|
||
|
@@ -375,14 +369,12 @@ $ git rm /pather/to/the/file/HelloWorld.c | |
|
||
## Weiterführende Informationen | ||
|
||
* [tryGit - A fun interactive way to learn Git.](http://try.github.io/levels/1/challenges/1) | ||
|
||
* [git-scm - Video Tutorials](http://git-scm.com/videos) | ||
* [git-scm - Video Tutorials](https://git-scm.com/videos) | ||
|
||
* [git-scm - Documentation](http://git-scm.com/docs) | ||
* [git-scm - Documentation](https://git-scm.com/docs) | ||
|
||
* [Atlassian Git - Tutorials & Workflows](https://www.atlassian.com/git/) | ||
|
||
* [SalesForce Cheat Sheet](https://na1.salesforce.com/help/doc/en/salesforce_git_developer_cheatsheet.pdf) | ||
* [gitflow - Ein Modell um mit Branches zu arbeiten](https://nvie.com/posts/a-successful-git-branching-model/) | ||
|
||
* [gitflow - Ein Modell um mit Branches zu arbeiten](http://nvie.com/posts/a-successful-git-branching-model/) | ||
* [Git For Computer Scientists](https://eagain.net/articles/git-for-computer-scientists/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ uno o varios archivos, a lo largo del tiempo. | |
+ El versionamiento distribuido no tiene una estructura definida, incluso se | ||
puede mantener el estilo de los repositorios SVN con git. | ||
|
||
[Información adicional](http://git-scm.com/book/es/Empezando-Acerca-del-control-de-versiones) | ||
[Información adicional](https://git-scm.com/book/es/v2/Inicio---Sobre-el-Control-de-Versiones-Acerca-del-Control-de-Versiones) | ||
|
||
### ¿Por qué usar Git? | ||
|
||
|
@@ -58,7 +58,7 @@ Un repositorio esta compuesto por la carpeta .git y un "árbol de trabajo". | |
El directorio .git contiene todas las configuraciones, registros, branches, HEAD | ||
y mas. | ||
|
||
[Lista detallada.](http://es.gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
[Lista detallada.](https://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
|
||
### Directorio de trabajo (componentes del repositorio) | ||
|
||
|
@@ -91,15 +91,8 @@ repositorio solo puede tener un HEAD activo. En cambio "head", es un apuntador a | |
cualquier commit realizado, un repositorio puede tener cualquier número de | ||
"heads". | ||
|
||
### conceptos - recursos. | ||
|
||
* [Git para informáticos](http://eagain.net/articles/git-for-computer-scientists/) | ||
* [Git para diseñadores](http://hoth.entp.com/output/git_for_designers.html) | ||
|
||
|
||
## Comandos. | ||
|
||
|
||
### init | ||
|
||
Crear un repositorio de git vacio. Las configuraciones, información almacenada y | ||
|
@@ -123,7 +116,7 @@ $ git config --global user.email "[email protected]" | |
$ git config --global user.name "nombre" | ||
``` | ||
|
||
[Más sobre git config.](http://git-scm.com/book/es/Personalizando-Git-Configuración-de-Git) | ||
[Más sobre git config.](https://git-scm.com/book/es/v2/Personalizaci%c3%b3n-de-Git-Configuraci%c3%b3n-de-Git) | ||
|
||
### help | ||
|
||
|
@@ -275,7 +268,7 @@ $ git grep -e 'nombreArreglo' --and \( -e agregar -e remover \) | |
|
||
Más ejemplos: | ||
|
||
- [Git Grep Ninja](http://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja) | ||
- [Git Grep Ninja](https://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja) | ||
|
||
### log | ||
|
||
|
@@ -354,7 +347,7 @@ de otra rama. *No reescribe los commits que se han empujado antes a un repositor | |
$ git rebase master experimentBranch | ||
``` | ||
|
||
[Información adicional.](http://git-scm.com/book/es/Ramificaciones-en-Git-Procedimientos-básicos-para-ramificar-y-fusionar) | ||
[Información adicional.](https://git-scm.com/book/es/v2/Ramificaciones-en-Git-Reorganizar-el-Trabajo-Realizado) | ||
|
||
### reset (precaución) | ||
|
||
|
@@ -396,22 +389,18 @@ $ git rm /directorio/del/archivo/FooBar.c | |
|
||
## Información Adicional | ||
|
||
* [tryGit - Una forma entretenida y rapida de aprender Git.](http://try.github.io/levels/1/challenges/1) | ||
|
||
* [Udemy tutorial de Git: Una guía completa](https://blog.udemy.com/git-tutorial-a-comprehensive-guide/) | ||
|
||
* [Inmersión Git - Una visita guiada caminando a través de los fundamentos de git](http://gitimmersion.com/) | ||
|
||
* [git-scm - Video-tutoriales](http://git-scm.com/videos) | ||
* [Inmersión Git - Una visita guiada caminando a través de los fundamentos de git](https://gitimmersion.com/) | ||
|
||
* [git-scm - Documentacion](http://git-scm.com/book/es) | ||
* [git-scm - Video-tutoriales](https://git-scm.com/videos) | ||
|
||
* [Atlassian Git - Tutoriales y Flujos de trabajo](https://www.atlassian.com/git/) | ||
|
||
* [SalesForce Chuleta](https://na1.salesforce.com/help/doc/en/salesforce_git_developer_cheatsheet.pdf) | ||
* [git - la guía sencilla](https://rogerdudler.github.io/git-guide/index.es.html) | ||
|
||
* [Git - La guía simple](http://rogerdudler.github.io/git-guide/index.html) | ||
* [Pro Git](https://git-scm.com/book/es/v2) | ||
|
||
* [Pro Git](http://www.git-scm.com/book/en/v2) | ||
* [Una introducción a Git y GitHub para principiantes (Tutorial)](https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners) | ||
|
||
* [Una introducción a Git y GitHub para principiantes (Tutorial)](http://product.hubspot.com/blog/git-and-github-tutorial-for-beginners) | ||
* [Git para informáticos](https://eagain.net/articles/git-for-computer-scientists/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ Chaque changement a un identifiant unique. | |
* Les systèmes distribués n'ont pas de structure définie. Vous pouvez aisément | ||
avoir un système centralisé de type SVN, avec Git. | ||
|
||
[Informations additionnelles](http://git-scm.com/book/fr/v1/D%C3%A9marrage-rapide-%C3%80-propos-de-la-gestion-de-version) | ||
[Informations additionnelles](https://git-scm.com/book/fr/v2/D%C3%A9marrage-rapide-%C3%80-propos-de-la-gestion-de-version) | ||
|
||
### Pourquoi utiliser Git ? | ||
|
||
|
@@ -63,7 +63,7 @@ Un dépôt Git comprend un répertoire .git et "l'arbre de travail" (working tre | |
|
||
Le répertoire .git contient toutes les configurations, logs (journaux), | ||
branches, HEAD et plus. | ||
[Liste détaillée (EN)](http://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
[Liste détaillée (EN)](https://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
|
||
### Arbre de travail (composant du dépôt) | ||
|
||
|
@@ -110,12 +110,6 @@ encore été rajouté à l'ensemble des fichiers Git | |
* Validé ("committed") - Les fichiers ont été validés dans l'ensemble de | ||
fichiers | ||
|
||
### Ressources conceptuelles | ||
|
||
* [Git pour les informaticiens (EN)](http://eagain.net/articles/git-for-computer-scientists/) | ||
* [Git pour les designers (EN)](http://hoth.entp.com/output/git_for_designers.html) | ||
|
||
|
||
## Commandes | ||
|
||
|
||
|
@@ -141,7 +135,7 @@ $ git config --global user.email "[email protected]" | |
$ git config --global user.name "Mon nom" | ||
``` | ||
|
||
[Apprenez-en plus à propos de git config.](https://git-scm.com/book/fr/v1/Personnalisation-de-Git-Configuration-de-Git) | ||
[Apprenez-en plus à propos de git config.](https://git-scm.com/book/fr/v2/Personnalisation-de-Git-Configuration-de-Git) | ||
|
||
### help | ||
|
||
|
@@ -355,7 +349,7 @@ $ git grep -e 'nomDeTableau' --and \( -e rajouter -e enlever \) | |
``` | ||
|
||
Google est votre ami; pour plus d'exemples : | ||
[Git Grep Ninja](http://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja) | ||
[Git Grep Ninja](https://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja) | ||
|
||
### log | ||
|
||
|
@@ -507,7 +501,7 @@ $ git stash pop | |
|
||
Vous êtes maintenant prêt à retourner sur vos tâches de travail ! | ||
|
||
[Lecture additionelle.](https://git-scm.com/book/fr/v1/Utilitaires-Git-Le-remisage) | ||
[Lecture additionelle.](https://git-scm.com/book/fr/v2/Utilitaires-Git-Remisage-et-nettoyage) | ||
|
||
### rebase (attention) | ||
|
||
|
@@ -521,7 +515,7 @@ ré-applique sur une autre branche. | |
$ git rebase master brancheExperience | ||
``` | ||
|
||
[Lecture additionelle.](https://git-scm.com/book/fr/v1/Les-branches-avec-Git-Rebaser) | ||
[Lecture additionelle.](https://git-scm.com/book/fr/v2/Les-branches-avec-Git-Rebaser-Rebasing) | ||
|
||
### reset (attention) | ||
|
||
|
@@ -564,20 +558,18 @@ $ git rm /chemin/vers/le/fichier/HelloWorld.c | |
|
||
## Informations complémentaires | ||
|
||
* [tryGit - A fun interactive way to learn Git (EN)](http://try.github.io/levels/1/challenges/1) | ||
|
||
* [Udemy Git Tutorial: A Comprehensive Guide (EN)](https://blog.udemy.com/git-tutorial-a-comprehensive-guide/) | ||
|
||
* [git-scm - Tutoriaux vidéos](http://git-scm.com/videos) | ||
* [git-scm - Tutoriaux vidéos](https://git-scm.com/videos) | ||
|
||
* [git-scm - Documentation](http://git-scm.com/docs) | ||
* [git-scm - Documentation](https://git-scm.com/docs) | ||
|
||
* [Atlassian Git - Tutoriaux et Workflows](https://www.atlassian.com/git/) | ||
|
||
* [SalesForce Cheat Sheet (EN)](https://na1.salesforce.com/help/doc/en/salesforce_git_developer_cheatsheet.pdf) | ||
* [git - petit guide](https://rogerdudler.github.io/git-guide/index.fr.html) | ||
|
||
* [Git - the simple guide (EN)](http://rogerdudler.github.io/git-guide/index.html) | ||
* [Livre Pro Git](https://git-scm.com/book/fr/v2) | ||
|
||
* [Livre Pro Git](http://www.git-scm.com/book/fr/v1) | ||
* [Une introduction à Git et GitHub pour les débutants (tutoriel) (EN)](https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners) | ||
|
||
* [Une introduction à Git et GitHub pour les débutants (tutoriel) (EN)](http://product.hubspot.com/blog/git-and-github-tutorial-for-beginners) | ||
* [Git pour les informaticiens (EN)](https://eagain.net/articles/git-for-computer-scientists/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ registra le modifiche apportate a uno o più file nel tempo. | |
* I sistemi distribuiti non hanno una struttura definita. Si potrebbe creare | ||
ad esempio un sistema centralizzato simile a SVN utilizzando Git. | ||
|
||
[Ulteriori informazioni](http://git-scm.com/book/it/v1/Per-Iniziare-Il-Controllo-di-Versione) | ||
[Ulteriori informazioni](https://git-scm.com/book/it/v2/Per-Iniziare-Il-Controllo-di-Versione) | ||
|
||
### Perchè usare Git? | ||
|
||
|
@@ -60,7 +60,7 @@ Un repository comprende la cartella .git e il working tree. | |
### Cartella .git (componente del repository) | ||
|
||
La cartella .git contiene tutte le configurazioni, i log, i rami e altro. | ||
[Lista dettagliata](http://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
[Lista dettagliata](https://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html) | ||
|
||
### Working Tree (componente del repository) | ||
|
||
|
@@ -128,7 +128,7 @@ $ git config --global user.email "[email protected]" | |
$ git config --global user.name "Nome utente" | ||
``` | ||
|
||
[Ulteriori informazioni su git config](http://git-scm.com/docs/git-config) | ||
[Ulteriori informazioni su git config](https://git-scm.com/docs/git-config) | ||
|
||
### help | ||
|
||
|
@@ -456,7 +456,7 @@ Applica le modifiche effettuate su un branch su un altro branch. | |
$ git rebase master experimentBranch | ||
``` | ||
|
||
[Ulteriori informazioni](https://git-scm.com/book/it/v1/Diramazioni-in-Git-Rifondazione) | ||
[Ulteriori informazioni](https://git-scm.com/book/it/v2/Git-Branching-Rebasing) | ||
|
||
### reset (attenzione) | ||
|
||
|
Oops, something went wrong.