Skip to content

Commit

Permalink
[git] update links (#5185)
Browse files Browse the repository at this point in the history
  • Loading branch information
verhovsky authored Nov 23, 2024
1 parent bc3598b commit 0cbd69c
Show file tree
Hide file tree
Showing 11 changed files with 122 additions and 197 deletions.
26 changes: 9 additions & 17 deletions de-de/git-de.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand All @@ -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)

Expand All @@ -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


Expand All @@ -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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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/)
33 changes: 11 additions & 22 deletions es-es/git-es.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand All @@ -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)

Expand Down Expand Up @@ -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
Expand All @@ -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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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/)
32 changes: 12 additions & 20 deletions fr-fr/git-fr.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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 ?

Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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


Expand All @@ -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

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand All @@ -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)

Expand Down Expand Up @@ -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/)
37 changes: 16 additions & 21 deletions git.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ unique id.
* Distributed systems have no defined structure. You could easily have a SVN
style, centralized system, with git.

[Additional Information](http://git-scm.com/book/en/Getting-Started-About-Version-Control)
[Additional Information](https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control)

### Why Use Git?

Expand All @@ -59,7 +59,7 @@ A git repository is comprised of the .git directory & working tree.

The .git directory contains all the configurations, logs, branches, HEAD, and
more.
[Detailed List.](http://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html)
[Detailed List.](https://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html)

### Working Tree (component of repository)

Expand Down Expand Up @@ -102,11 +102,6 @@ to Git Database yet
* Staged - Marks a modified file to go into your next commit snapshot
* Committed - Files have been committed to the Git Database

### Conceptual Resources

* [Git For Computer Scientists](http://eagain.net/articles/git-for-computer-scientists/)
* [Git For Designers](http://hoth.entp.com/output/git_for_designers.html)

## Commands

### init
Expand All @@ -132,7 +127,7 @@ $ git config --global user.email
$ git config --global user.name
```

[Learn More About git config.](http://git-scm.com/docs/git-config)
[Learn More About git config.](https://git-scm.com/docs/git-config)

### help

Expand Down Expand Up @@ -345,7 +340,7 @@ $ git grep -e 'arrayListName' --and \( -e add -e remove \)
```

Google is your friend; for more examples
[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

Expand Down Expand Up @@ -495,7 +490,7 @@ $ git stash pop

Now you're ready to get back to work on your stuff!

[Additional Reading.](http://git-scm.com/book/en/v1/Git-Tools-Stashing)
[Additional Reading.](https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning)

### rebase (caution)

Expand All @@ -509,7 +504,7 @@ another branch.
$ git rebase master experimentBranch
```

[Additional Reading.](http://git-scm.com/book/en/Git-Branching-Rebasing)
[Additional Reading.](https://git-scm.com/book/en/v2/Git-Branching-Rebasing)

### reset (caution)

Expand Down Expand Up @@ -600,26 +595,26 @@ b88c6a1b (Google Python team 2019-12-30 13:45:23 -0800 14)
## Further Information
* [tryGit - A fun interactive way to learn Git.](http://try.github.io/levels/1/challenges/1)
* [Learn Git Branching - the most visual and interactive way to learn Git on the web](http://learngitbranching.js.org/)
* [Learn Git Branching - the most visual and interactive way to learn Git on the web](https://learngitbranching.js.org/)
* [Udemy Git Tutorial: A Comprehensive Guide](https://blog.udemy.com/git-tutorial-a-comprehensive-guide/)
* [Git Immersion - A Guided tour that walks through the fundamentals of git](http://gitimmersion.com/)
* [Git Immersion - A Guided tour that walks through the fundamentals of git](https://gitimmersion.com/)
* [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](http://res.cloudinary.com/hy4kyit2a/image/upload/SF_git_cheatsheet.pdf)
* [SalesForce Cheat Sheet](https://res.cloudinary.com/hy4kyit2a/image/upload/SF_git_cheatsheet.pdf)
* [Git - the simple guide](http://rogerdudler.github.io/git-guide/index.html)
* [git - the simple guide](https://rogerdudler.github.io/git-guide/index.html)
* [Pro Git](http://www.git-scm.com/book/en/v2)
* [Pro Git](https://git-scm.com/book/en/v2)
* [An introduction to Git and GitHub for Beginners (Tutorial)](http://product.hubspot.com/blog/git-and-github-tutorial-for-beginners)
* [An introduction to Git and GitHub for Beginners (Tutorial)](https://product.hubspot.com/blog/git-and-github-tutorial-for-beginners)
* [The New Boston tutorial to Git covering basic commands and workflow](https://www.youtube.com/playlist?list=PL6gx4Cwl9DGAKWClAD_iKpNC0bGHxGhcx)
* [Git For Computer Scientists](https://eagain.net/articles/git-for-computer-scientists/)
8 changes: 4 additions & 4 deletions it-it/git-it.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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?

Expand All @@ -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)

Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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)

Expand Down
Loading

0 comments on commit 0cbd69c

Please sign in to comment.