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 3 / 3
58 results tagged git  ✕
Home // Think Like (a) Git http://think-like-a-git.net/
12/07/2017 13:49:19

Un tuto GIT pas à pas.

git tuto
A Cheat Sheet for Git Commands https://www.cloudways.com/blog/git-cheat-sheet/
08/02/2017 22:17:22

Une cheat sheet Git.

git cheatsheet
git branch - Update git branches from master - Stack Overflow http://stackoverflow.com/questions/3876977/update-git-branches-from-master/28505516#28505516
23/12/2016 08:53:35

La réponse à la question n'est pas si évidente que ça. La différence entre les deux options proposées peut s'avérer importante.

git merge rebase synchronisation
Oh, shit, git! http://ohshitgit.com/
14/09/2016 11:38:19

Quelques astuces pour le jour où vous merderez profondément avec GIT :)

git rollback erreur debug
Tips #3 : Merge Git, faire un essai à blanc http://wodric.com/tips-3-merge-git/
14/09/2016 11:36:53

Faire un merge à blanc dans GIT. Utile pour les merges massifs.

Pour lancer le merge à blanc :

git merge --no-commit --no-ff <branch-name>

Pour l'annuler :

git merge --abort
git merge test simulation
Mes débuts sur GitHub - Liens de WebManiaK https://powerjpm.info/liens/?-VNe-g
07/06/2016 14:48:54

Je me garde aussi les liens sous le coude.

git github
Syncing a fork - User Documentation https://help.github.com/articles/syncing-a-fork/
03/05/2016 18:57:52

Synchroniser un fork avec le repo dont il est issu :

Si ce n'est pas déjà fait :

    git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git

Puis :

    git fetch upstream
    git checkout master
    git merge upstream/master

Autre technique ( http://stackoverflow.com/questions/3903817/pull-new-updates-from-original-github-repository-into-forked-github-repository/3903835#3903835 )

$ cd github-services
$ git remote add upstream git://github.com/pjhyett/github-services.git
$ git fetch upstream

// then: (like "git pull" which is fetch + merge)
$ git merge upstream/master master

// or, better, replay your local work on top of the fetched branch
// like a "git pull --rebase"
$ git rebase upstream/master
git synchronisation fork github
gitMask - Develop Anonymously http://www.gitmask.com/
11/02/2016 13:34:10

Un outil permettant de contribuer anonymement à un projet hébergé sur Github.

Via http://korben.info/contribuez-anonymement-sur-github-grace-a-gitmask.html

git github anonyme
GitHub - gogits/gogs: Gogs (Go Git Service) is a painless self-hosted Git service. https://github.com/gogits/gogs
11/02/2016 13:24:11

Une sorte de Github à héberger soi-même.

Via http://korben.info/ring-un-outil-securise-respectueux-de-la-vie-privee-et-libre-pour-communiquer-avec-vos-amis.html

git github hébergement
Painless Maven project releases with Maven GitFlow Plugin – George Stathis http://george-stathis.com/2013/11/09/painless-maven-project-releases-with-maven-gitflow-plugin/
21/01/2016 08:13:43

Faire du GitFlow avec Maven.

git gitflow release maven
Mis en place de GitLab https://blog.ouvrard.it/index.php/2015/12/03/gitlab-server-installation
18/01/2016 19:09:06

Un petit tuto qui a l'air assez bien foutu pour installer GitLab (une sorte de Github à héberger soi-même).

git gitlab github tuto
ssh - How do I tell Git for Windows where to find my private RSA key? - Server Fault http://serverfault.com/questions/194567/how-do-i-tell-git-for-windows-where-to-find-my-private-rsa-key
18/12/2015 16:40:48

Comment inclure une clé ssh privée pour que le Git Bash sous Windows en tienne compte.
En gros il faut l'exporter en OpenSSH via PUTTYGEN, renommer le fichier en id_rsa et le placer dans le HOME/.ssh/ de Git Bash.

git ssh putty bash windows
github/gitignore https://github.com/github/gitignore
13/11/2015 11:33:40

Une sélection de templates de fichiers .gitignore en fonction de la techno utilisée.

gitignore git template
github - Git, fatal: The remote end hung up unexpectedly - Stack Overflow http://stackoverflow.com/questions/15240815/git-fatal-the-remote-end-hung-up-unexpectedly
18/03/2015 16:34:17

Commande utile quand on rencontre l'erreur ci-dessus lors d'un premier push sur un repo externe :
git config http.postBuffer 524288000

git erreur
github - Delete a Git branch both locally and remotely - Stack Overflow http://stackoverflow.com/questions/2003505/delete-a-git-branch-both-locally-and-remotely
17/03/2015 10:07:12

Dans Git, comment supprimer une branch au niveau du repository :
git push origin --delete

git
Setting up a repository | Atlassian Git Tutorial https://www.atlassian.com/git/tutorials/setting-up-a-repository
11/02/2015 23:01:37

Des tutos très bien foutus sur Git. Très pratique comme boîte à outils.

git dev
Git - Étiquetage http://git-scm.com/book/fr/Les-bases-de-Git-%C3%89tiquetage
01/08/2014 18:01:40

Quelques explications sur l'étiquetage (tagging).

git tag
Chrome Web Store - Octotree https://chrome.google.com/webstore/detail/octotree/bkhaagjahfmjljalopjnoealnfndnagc
14/05/2014 13:00:44

Une extension très sympa pour les gros utilisateurs de Github : elle ajoute l'arborescence des fichiers d'un projet lorsque vous en visualisez la page.
A tester par exemple avec la page Github de l'extension elle-même : https://github.com/buunguyen/octotree/
Via : http://korben.info/octotree.html

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