VirtualTam's bookmarks
19 bookmarks found
Page 1 of 1
-
-
- https://stackoverflow.com/questions/1838873/visualizing-branch-topology-in-git
- https://stackoverflow.com/questions/1057564/pretty-git-branch-graphs
- https://stackoverflow.com/a/25468472
- https://chrisfreeman.github.io/gitdags_install.html
- https://zwischenzugs.com/2018/03/08/create-your-own-git-diagrams/
- https://hub.docker.com/r/imiell/gitdags/
- https://github.com/ianmiell/gitdags/tree/master/examples
-
Git - Merge and/or Rebase workflows
2017-10-26 - https://www.atlassian.com/git/tutorials/merging-vs-rebasing
- https://stackoverflow.com/questions/804115/when-do-you-use-git-rebase-instead-of-git-merge
- https://medium.com/bekk/why-you-should-stop-using-git-rebase-5552bee4fed1
- https://medium.com/@porteneuve/getting-solid-at-git-rebase-vs-merge-4fa1a48c53aa
-
git worktree
2015-08-21 "check out more than one branch at a time"
Useful if you're simultaneously working on several versions / branches of the same repository ;-)
-
A successful Git branching model
2015-03-02 -
How to solve Git issues...
from https://presentate.com/bobthecow/talks/changing-history
-
Git - Split / shrink a repository
2014-09-05 1# first, clone the repository 2git clone REPO REPO2 3cd REPO2 4# remove all unneeded files from this version 5git filter-branch -f --prune-empty --index-filter "git rm --cached --ignore-unmatch FILES_AND_DIRS_TO_DELETE" 6git gc --aggressive --prune=1day 7git fsck --unreachable 8# refresh the remote 9git remote rm origin 10git remote add origin ssh://HOST/REPO 11# broforce push! 12git push -f origin master 13 14# cleanup our original repository 15cd REPO 16git filter-branch -f --prune-empty --index-filter "git rm --cached --ignore-unmatch OTHER_FILES_AND_DIRS_TO_DELETE" 17git gc --aggressive --prune=1day 18git fsck --unreachable 19# broforce push! 20git push -f origin master
Page 1 of 1