kalvn's links
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 2 / 3
58 results tagged git  ✕
How to undo (almost) anything with Git - The GitHub Blog https://github.blog/2015-06-08-how-to-undo-almost-anything-with-git/
25/12/2019 14:36:06

Sous le coude.

git astuce
Git from the Bottom Up https://jwiegley.github.io/git-from-the-bottom-up/
07/06/2019 11:04:07

Présentation ultra détaillée de Git.

git
Learn git concepts, not commands - DEV Community 👩‍💻👨‍💻 https://dev.to/unseenwizzard/learn-git-concepts-not-commands-4gjc
05/06/2019 14:12:21

Assez long mais extrêmement instructif ! Si vous devez apprendre Git, commencez par là. Tout est expliqué pas à pas et avec des exemples.

git tuto
commit-messages-guide/README.md at master · RomuloOliveira/commit-messages-guide · GitHub https://github.com/RomuloOliveira/commit-messages-guide/blob/master/README.md
22/04/2019 17:46:45

Un guide pour écrire vos messages de commit de manière efficace.

git guide
Working with SSH key passphrases - GitHub Help https://help.github.com/en/articles/working-with-ssh-key-passphrases#auto-launching-ssh-agent-on-git-for-windows
08/04/2019 14:21:35

Ce script permet de lancer automatiquement un agent SSH lors de la première ouverture de git-bash lors de votre session. Par la suite, vous n'aurez plus besoin d'entrer le mot de passe de votre clé SSH jusqu'à la fin de votre session Windows.

L'article mentionne deux possibilité pour le nom du fichier qui contient le script. Dans mon cas, il n'y a que ~\.bashrc qui a fonctionné.

Si vous voulez interrompre l'agent, il suffit de tuer le process ssh-agent.exe.

Via https://stackoverflow.com/a/18404557/2086437

ssh git
15 Git Commands You May Not Know - DEV Community 👩‍💻👨‍💻 https://dev.to/zaiste/15-git-commands-you-may-not-know-4a8j
08/04/2019 11:42:51
  1. Modify The Most Recent Commit
  2. Interactively Add Selected Parts of Files
  3. Interactively Stash Selected Parts of Files
  4. Stash with untracked
  5. Interactively Revert Selected Parts of Files
  6. Switch to Previous Branch
  7. Revert All Local Changes
  8. Show changes
  9. Rename Branches Locally
  10. Rename Branches Remotely
  11. Open All Files with Conflicts at Once
  12. What changed?
  13. Remove file from last commit
  14. Find Branches
  15. Optimize the repository locally
git astuce
Git hacks you should know about - DEV Community 👩‍💻👨‍💻 https://dev.to/teamxenox/git-hacks-you-should-know-about-16pk
12/03/2019 10:44:28

Quelques astuces pour Git.

git astuce
The Smart Ways to Correct Mistakes in Git | CSS-Tricks https://css-tricks.com/the-smart-ways-to-correct-mistakes-in-git/
15/02/2019 09:15:12

Pas mal de bons conseil pour corriger des erreurs dans Git.

git erreur
Using Dotfiles for Managing Development and Many Other Magical Things | CSS-Tricks https://css-tricks.com/using-dotfiles-for-managing-development-and-many-other-magical-things/
13/02/2019 15:24:59

Un petit aperçu des dotfiles (les fichiers préfixés par un point) et ce qu'on peut faire avec.

dotfile terminal git
Git Large File Storage | Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. https://git-lfs.github.com/
29/01/2019 10:41:52

Une extension de Git qui gère les gros fichiers.

git
git - How to remove files that are listed in the .gitignore but still on the repository? - Stack Overflow https://stackoverflow.com/a/13541721/2086437
08/01/2019 15:24:45

Supprimer tous les fichiers qui sont dans le .gitignore du repository en une commande.

git ls-files -i --exclude-from=.gitignore | xargs git rm --cached
git gitignore
A quick look at the git object store - DEV Community 👩‍💻👨‍💻 https://dev.to/imjacobclark/a-quick-look-at-the-git-object-store-290j
25/09/2018 13:28:22

tl;dr

git tldr
Sublime Merge - Git, done Sublime https://www.sublimemerge.com/
20/09/2018 13:32:03

L'équipe derrière Sublime Text vient de créer un client Git ! J'ai pas encore testé en détail mais ça a l'air propre. Peut-être pas aussi riche que SourceTree ou GitKraken mais vraiment propre. Fidèle à la philosophie de Sublime Text en fait.

sublimetext git app
how to upgrade git · Issue #1570 · cmderdev/cmder · GitHub https://github.com/cmderdev/cmder/issues/1570#issuecomment-398734888
20/06/2018 14:47:10

Mettre à jour la version de Git présente dans Cmder.

  1. Rename C:\path\to\cmder\vendor\git-for-windows into C:\path\to\cmder\vendor\git-for-windows.old
  2. Download the last portable version of Git for Windows with the last link on this page Git for Windows Portable ("thumbdrive edition")
  3. Extract it in C:\path\to\cmder\vendor\git-for-windows
cmder git update
Gitea https://gitea.io/en-US/
09/05/2018 12:49:03

Un fork de Gogs, une alternative à Gitlab, un clone auto-hébergé de Github. Vous suivez toujours ? :D

git selfhosted gitlab
Git Merge vs. Rebase: What’s the Diff? – Hacker Noon https://hackernoon.com/git-merge-vs-rebase-whats-the-diff-76413c117333
10/04/2018 08:26:35

A retenir :

  • Use merge in cases where you want a set of commits to be clearly grouped together in history
  • Use rebase when you want to keep a linear commit history
  • DON’T use rebase on a public/shared branch
git merge rebase
Comprendre les lignes de commande git avec des dessins ! – mae & le web https://mae.ovh/blog/comprendre-commande-git-dessins/
12/03/2018 22:34:29
git tuto
git - Change commit author at one specific commit - Stack Overflow https://stackoverflow.com/questions/3042437/change-commit-author-at-one-specific-commit#3042512
01/02/2018 14:03:07

Changer les informations sur l'auteur d'un commit à l'aide de git rebase.

git rebase astuce
Git GUI for Windows, Mac & Linux | GitKraken https://www.gitkraken.com/
30/12/2017 10:54:52

Un client Git qui a pas l'air vilain.

git app
Miximum — Pour arrêter de galérer avec Git https://www.miximum.fr/blog/enfin-comprendre-git/
28/08/2017 13:57:15

Une petite introduction à Git assez pragmatique et facile à comprendre :)

git tuto
page 2 / 3
3882 links, including 129 private
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Theme by kalvn