Git
git is an SCM methodology and technology using an (arguably) simplified set of commands for version control in comparison to similar methodologies (namely, CVS and SVN), and allowing for distributed repositories such that a developer first "pulls" a full copy of the repository locally with its own versioning. Once they are satisfied with a particular set of code updates or new feature addition, they can "push" all of their code from local (as per traditional SCM), or, simply push the changes which can then be first piped through a "Code Review" step in the SCM pipeline before being merged back to the main repository, which via DIFF can show exactly what changes were made and whether there are any conflicts with the latest version of the repository. If there are conflicts the updated code never gets merged back to the main tree directly, another pull request will get the developer's repository up-to-date first, and then they can try again. This in theory, reduces situations where small incremental updates from widely dispersed teams of developers wipe out the work of other developers in the main "branch".
Distributed Repositories
git versioning stores code in a repository (commonly abbreviated as repo). The repo is by default held on your own system with branches separate from master; however that configuration is of limited use to larger teams. It is much better to run in distributed version control mode to realize the full power of git. Some popular sites & web services have cropped up to support distributed git modes, and will be summarized below.
GitLab
GitLab is an open source SCM tool that combines a web-based GIT platform with a desktop client (via Gitorious acquisition)[1], and a strong focus on CI/CD.[2][3]
- GitLab: https://about.gitlab.com/
BitBucket
BitBucket is an SCM tool that provides both GIT and Mercurial repository hosting either in a Cloud or Self-Hosted model. Tthe Self=Hosted option is formerly known as "Stash" before Atlassian acquired BitBucket and merged the two tools under the BitBucket banner[11], taking the BitBucket name)
Stash
- BitBucket Server (Stash): https://www.atlassian.com/software/bitbucket/download | DOCS[12]
- Managing WebHooks in Bitbucket Server: https://confluence.atlassian.com/bitbucketserver/managing-webhooks-in-bitbucket-server-938025878.html
- Jenkins plugins -- BitBucket Server: https://go.atlassian.com/jenkins-eap-download | SRC
[13] [14] [15] [16] [17] [18] [19]
BitBucket Cloud
- BitBucket Cloud: https://bitbucket.org/ [20][21][22][23][24][25]
- BitBucket -- Add-ons Marketplace: https://marketplace.atlassian.com/plugins/app/bitbucket/popular
- BitBucket Status: https://twitter.com/BitBucketStatus (Twitter feed for more up-to-date BitBucket outage reports)
- BitBucket WebHooks: https://confluence.atlassian.com/bitbucket/manage-webhooks-735643732.html | SRC[28][29][30][31][32][33][34][35]
BitBucket Pipelines
- BitBucket Pipelines: https://bitbucket.org/product/features/pipelines | DOCS | VALIDATOR[38][39][40][41][42][43]
[44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] [83] [84] [85]
Workflows
- Workflow for Git feature branching: https://confluence.atlassian.com/bitbucket/workflow-for-git-feature-branching-814201830.html[86][87][88]
[89] [90] [91] [92] [93] [94] [95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105]
BitBucket Deployments
- BitBucket Deployments: https://confluence.atlassian.com/bitbucket/bitbucket-deployments-940695276.html
[106] [107] [108] [109] [110] [111] [112] [113] [114] [115] [116] [117][118][119] [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] [132]
Git LFS
- GIT Large File Storage (LFS): https://git-lfs.github.com/ (open source Git extension for versioning large files... partnership between rivals GitHub & BitBucket created this OSS extension to GIT)
[133] [134] [135] [136] [137] [138] [139] [140] [141]
- BitBucket for Slack (Slack APP): https://get.slack.help/hc/en-us/articles/115005265283-Bitbucket-for-Slack | Slack for BitBucket (BitBucket PLUGIN) | DOCS
[142] [143] [144] [145] [146] [147] [148] [149] [150] [151] [152] [153] [154]
GitHub
GitHub was "the" original web-based GIT platform. Aside from being a robust platform with good uptime, it also offers "subscription0-based" plans for Private repositories and [GitHub Pages] (a free project-info/landing-page hosting service), as well as a number of other useful features (including integrations to the most popular development tools).
- GitHub: http://github.com | EXAMPLE | EXAMPLE - PAGES
[155] [156] [157] [158] [159] [160] [161] [162] [163] [164] [165] [166] [167] [168] [169] [170] [171]
Branching Models
Centralized
Similar to SVN.
- Git Branching strategy - Comparing workflows: https://www.atlassian.com/git/tutorials/comparing-workflows
Feature Branching
Branch-per-issue or Feature (i.e. "User Story" in Agile), branching off of "master". [173] [174] [175]
Gitflow
Branch-per-issue or Feature (i.e. "User Story" in Agile), but this time branching off of a "develop" branch which gets synched with changes (hotfixes) down from "master" as soon as possible. We can cut a "release" branch off of the "develop" branch when a significant enough amount of work has been Code Reviewed through a Pull Request (PR), giving us a release candidate that gets merged into "master". If any changes whatsoever occur in "release" they must be merged down to "develop" as well to ensure consistency.
The main goal is to keep "master" releasable (aka. ever-green), while also separating bug fix type of work from new feature development or project work.
- A successful Git branching model: http://nvie.com/posts/a-successful-git-branching-model/
- Git Branching - Branches in a Nutshell: https://git-scm.com/book/en/v2/Git-Branching-Branches-in-a-Nutshell
- Feature Branching vs. Feature Flags -- What’s the Right Tool for the Job?: https://devops.com/feature-branching-vs-feature-flags-whats-right-tool-job/
- When should a build task be triggered while using GitFlow?: https://community.atlassian.com/t5/Bamboo-discussions/When-should-a-build-task-be-triggered-while-using-GitFlow/td-p/602030
- Continuous Delivery workflows with the (Gitflow) branch-per-issue model: https://www.atlassian.com/continuous-delivery/continuous-delivery-workflows-with-feature-branching-and-gitflow
- Gitflow (CHEAT SHEET): http://danielkummer.github.io/git-flow-cheatsheet/[176]
[177] [178] [179] [180] [181] [182] [183] [184] [185] [186] [187] [188] [189] [190]
Gitflow 2.0
Branch-per-issue or Feature (i.e. "User Story" in Agile), but differing from the first Gitflow proposal because now we branch any long-lived (lasting a Sprint or longer) features being developed, off of a project-specific "develop/project" branch which originates off of the "master" branch rather than a single long-lived "develop" branch. Then we cut our "release" branches directly off of the "develop/project" branches as they are completed, giving us a release candidate for production which needs to get synched with any changes (hotfixes) down from "master" as soon as they are made.
The main goal is still to keep "master" releasable (aka. ever-green) but the secondary goal is to also prevent any unwanted code from the project branches getting merged (i.e. unfinished work, half-baked feature, feature intentionally being withheld).
- When Gitflow Stops Being Agile: https://web.archive.org/web/20170618105931/https://www.isostech.com/blogs/software-development/gitflow-stops-agile/[191][192][193][194]
- gitflow: https://github.com/petervanderdoes/gitflow-avh/ | SRC | DOCS (AVH version is the most current and widely used fork of original gitflow)[195]
- Gitflow - A convincing testimonial: https://jeffkreeftmeijer.com/git-flow/[196]
- GitFlow - on the path (VIDEO): https://web.archive.org/web/20110802055148/http://codesherpas.com/screencasts/on_the_path_gitflow.mov[197][198]
[199] [200] [201] [202] [203] [204] [205] [206] [207] [208] [209] [210] [211]
GitOps
A term coined by Operations engineers at WeaveWorks (and possibly elsewhere in the SRE/DevOps communities) following and promoting the philosophy of "versioning everything that moves/changes" or in other words "Everything-as-code" (i.e. Configuration-as-Code, Infrastructure-as-Code, Network-as-Code, Database-as-Code, Pipeline-as-Code, etc). In particular, the "GitOps movement" tends to gravitate towards git as the preferred SCM tool due to its flexibility and powerful history/branching/commit models it enables.
- GitOps - Operations by Pull Request: https://www.weave.works/blog/gitops-operations-by-pull-request
- Already learned DevOps? Great, now it’s time for GitOps: https://thenextweb.com/contributors/2018/12/08/all-you-need-to-know-about-gitops/
- GitOps — Git Push All the Things: https://dzone.com/articles/gitops-git-push-all-the-things
Tools
- GIT source code management: http://git-scm.com/ (OFFICIAL PROJECT/SITE)
- msysgit - Git for Windows : http://code.google.com/p/msysgit/
- GitOSX - Git for Mac: http://code.google.com/p/git-osx-installer/
- Giggle - Git for Linux (Ubuntu): http://live.gnome.org/giggle [215]
- Gitblit: http://gitblit.com/ (Java-based cross-platform GIT server & client)
- Bonobo Git Server: https://bonobogitserver.com (simple self-hosted git server for Windows which runs on IIS)
- Microsoft - Git Credential Manager (for Windows): https://github.com/Microsoft/Git-Credential-Manager-for-Windows[216]
- GIT ignore helper: https://gitignore.io (build an platform/framework/language/IDE-specific .gitignore file)[217]
- YAML validator: http://www.yamllint.com/
- YAML Validator for "bitbucket-pipelines.yml" format: https://bitbucket-pipelines.prod.public.atl-paas.net/validator
SourceTree
[222] [223] [224] [225] [226] [227] [228] [229] [230] [231] [232]
Resources
- GIT (E-BOOK): https://git-scm.com/book/en/v2
- Pro GIT (E-BOOK): http://progit.org/book/
- Git - SVN user's Crash Course: http://git-scm.com/course/svn.html (side-by-side comparison)[233]
- Git visual cheat sheet: http://zrusin.blogspot.com/2007/09/git-cheat-sheet.html
- Useful Git Commands: https://dzone.com/articles/useful-git-commands
- Top 10 GIT commands for a newbie: http://niklasschlimm.blogspot.com/2011/07/top-10-git-commands-for-newbie.html
- Bash Script to Convert Subversion (SVN) repo to GIT: http://java.dzone.com/articles/bash-script-convert-subversion
- Automated git deployments from Bitbucket: http://jonathannicol.com/blog/2013/11/19/automated-git-deployments-from-bitbucket/ (PHP script to listen for BitBucket "WebHook" requests)
- Feature branching your way to greatness: http://www.atlassian.com/agile/branching (3 types of winning branch strategies, less to more granularity/impact: Release, Feature-flag, Task/Defect)[234]
- Patterns for Managing Source Code Branches: https://martinfowler.com/articles/branching-patterns.html#experimental-branch (excellent round-up of the main strategies)
- Trunk Based Development: https://trunkbaseddevelopment.com
- git-flow cheat sheet: http://danielkumtmer.github.io/git-flow-cheatsheet/
- git docs -- PRETTY FORMATS: https://git-scm.com/docs/pretty-formats
Tutorials
- GIT Immersion: http://gitimmersion.com/
- Learn GIT Branching: https://learngitbranching.js.org/
- Git - getting stared: https://git-scm.com/book/en/v1/Getting-Started-About-Version-Control
- Git Tutorial: http://schacon.github.com/git/gittutorial.html
- Git tutorial: https://git-scm.com/docs/gittutorial
- GitHub - learning challenges: https://try.github.io/levels/1/challenges/1
- Git For Windows Developers – Git Series: http://www.lostechies.com/blogs/jason_meridth/archive/2009/06/01/git-for-windows-developers-git-series-part-1.aspx
- GIT on windows - Screencast: http://gitcasts.com/posts/git-on-windows[235]
- Git for NetBeans: http://netbeans.org/kb/docs/ide/git.html
- git on Windows - find location of configuration files: https://www.onwebsecurity.com/configuration/git-on-windows-location-of-global-configuration-file.html (this gives you some hints at the install folders, and for instance whether your 3rd party GIT client is using an embedded or system GIT)
- How to build your own Git server: https://opensource.com/life/16/8/how-construct-your-own-git-server-part-6
- How to run your own Git Server: https://www.linux.com/learn/how-run-your-own-git-server
- Tutorial -- how to use git through a proxy: http://cms-sw.github.io/tutorial-proxy.html
- How to upgrade to the latest version of Git on Windows? Still showing older version: https://stackoverflow.com/questions/13790592/how-to-upgrade-to-the-latest-version-of-git-on-windows-still-showing-older-vers
- GIT alias: https://www.atlassian.com/git/tutorials/git-alias (convenience utility for common settings)
- Commits are snapshots, not DIFFs: https://github.blog/2020-12-17-commits-are-snapshots-not-diffs/
- What is the difference between 'git pull' and 'git fetch'?: http://stackoverflow.com/questions/292357/what-is-the-difference-between-git-pull-and-git-fetch#292359
- Difference between “git add -A” & “git add .”: https://stackoverflow.com/questions/572549/difference-between-git-add-a-and-git-add
- What are the differences between “git commit” and “git push”?: http://stackoverflow.com/questions/2745076/what-are-the-differences-between-git-commit-and-git-push[238][239][240][241]
- git - pushing & pulling: http://gitready.com/beginner/2009/01/21/pushing-and-pulling.html
- Pushing to a remote: https://help.github.com/articles/pushing-to-a-remote/
- Pull requests: http://help.github.com/pull-requests/ (let you tell others about changes you've pushed to a GitHub repository)
- The quickest and easiest "Getting Started w/ GitHub" article you'll ever read!: http://ryanlowdermilk.com/2012/01/the-quickest-and-easiest-getting-started-w-github-article-youll-ever-read/
- Getting the Hang of GitHub: http://net.tutsplus.com/tutorials/other/getting-the-hang-of-github/
- GitHub Flow -- Managing Issues with git-flow: http://scottchacon.com/2011/08/31/github-flow.html
- Understanding the GitHub Flow: https://guides.github.com/introduction/flow/
- GIT - ignoring files: http://gitready.com/beginner/2009/01/19/ignoring-files.html
- Ignoring Files on Git (but just for a while): http://dzone.com/articles/ignoring-files-on-git-but-just-for-a-while-with-as
- Remove unwanted to accidentally added file(s) from a Git commit: https://stackoverflow.com/a/42450337/335867 (works even if already pushed, just need to "force-push")
- How do I remove sensitive files from git's history: http://stackoverflow.com/questions/872565/how-do-i-remove-sensitive-files-from-gits-history
- GIT ignoring doesn't remove a file: http://gitready.com/beginner/2009/03/06/ignoring-doesnt-remove-a-file.html
- Remove files from git repo completely: http://stackoverflow.com/questions/5563564/remove-files-from-git-repo-completely
- Ignore files that have already been committed to a Git repository: https://stackoverflow.com/questions/1139762/ignore-files-that-have-already-been-committed-to-a-git-repository
- How can I add an empty directory to a Git repository?: https://stackoverflow.com/questions/115983/how-can-i-add-an-empty-directory-to-a-git-repository
- How to Become a Better GIT user: http://java.dzone.com/articles/how-become-better-git
- So You Want Your Team To Start Using Git? -- Part 4, Team Workflows: http://java.dzone.com/articles/so-you-want-your-team-start-0
- How do I keep two git repositories in sync?: http://stackoverflow.com/questions/14370929/how-do-i-keep-two-git-repositories-in-sync
- What's the difference between git clone --mirror and git clone --bare: http://stackoverflow.com/questions/3959924/whats-the-difference-between-git-clone-mirror-and-git-clone-bare
- How can I change the remote/target repository URL on Windows?: https://stackoverflow.com/questions/1800859/how-can-i-change-the-remote-target-repository-url-on-windows#8676555
- Git merge master down into feature branch: https://stackoverflow.com/questions/16955980/git-merge-master-into-feature-branch#16957483 (or "develop" branch of GITFLOW for instance)[244][245]
- How to With Git -- Rename Branch: http://www.hostingadvice.com/how-to/git-branch-rename/
- Rename a local & remote branch in git: https://multiplestates.wordpress.com/2015/02/05/rename-a-local-and-remote-branch-in-git/
- GIT - Undoing Changes: https://www.atlassian.com/git/tutorials/undoing-changes
- Reset Demystified: https://git-scm.com/2011/07/11/reset.html
- How to undo 'git add' before commit?: https://stackoverflow.com/questions/348170/how-to-undo-git-add-before-commit
- Move (or “Undo”) last git commit to unstaged area: https://stackoverflow.com/questions/10846875/move-or-undo-last-git-commit-to-unstaged-area?noredirect=1&lq=1
- How do I undo the last commits in Git?: https://stackoverflow.com/questions/927358/how-do-i-undo-the-last-commits-in-git
- How to delete an entire "git commit" (including history): http://stackoverflow.com/questions/1338728/how-to-delete-a-git-commit
- Delete commits from a branch in Git: https://stackoverflow.com/questions/1338728/delete-commits-from-a-branch-in-git
- SourceTree - undo unpushed commits: https://stackoverflow.com/questions/23865335/sourcetree-undo-unpushed-commits
- Git reverse commit a pushed merge in SourceTree: https://stackoverflow.com/questions/35652427/git-reverse-commit-a-pushed-merge-in-sourcetree
- How to revert Git repository to a previous commit?: http://stackoverflow.com/questions/4114095/how-to-revert-git-repository-to-a-previous-commit
- How to modify a specified commit?: https://stackoverflow.com/questions/1186535/how-to-modify-a-specified-commit
- How do you make changes on a specific commit?: https://confluence.atlassian.com/stashkb/how-do-you-make-changes-on-a-specific-commit-747831891.html
- Change commit message for specific commit: https://stackoverflow.com/questions/38892599/change-commit-message-for-specific-commit
- How to change a commit message in git after push: https://medium.com/@_oleksii_/how-to-change-a-commit-message-in-git-after-push-32d1fbd6fc3b
- Advanced Git Commands - Rewriting History: https://dzone.com/articles/advanced-git-commands-rewriting-history
- SourceTree -- Tip of the Week - Save (STASH) Your Changes for Later: https://community.atlassian.com/t5/Sourcetree-articles/Tip-of-the-Week-Save-Your-Changes-for-Later/ba-p/673999
- Advanced Git log: https://www.atlassian.com/git/tutorials/git-log
- List JIRA ticket IDs from Git log: https://coderwall.com/p/_-9dvq/list-jira-ticket-ids-from-git-log
- Viewing Log/History of a Repository (as ascii/text graph): https://confluence.atlassian.com/sourcetreekb/viewing-log-history-of-a-repository-785615840.html
- List git commits to master branch between two dates: https://stackoverflow.com/questions/27313309/list-git-commits-to-master-branch-between-two-dates?answertab=active#tab-top
- git log of a single revision: https://stackoverflow.com/questions/4082126/git-log-of-a-single-revision
- How to output git log with the first line only?: https://stackoverflow.com/questions/4479225/how-to-output-git-log-with-the-first-line-only
- Print commit message of a given commit in git: https://stackoverflow.com/questions/3357280/print-commit-message-of-a-given-commit-in-git
- How to view file diff in git before commit: https://stackoverflow.com/questions/10039747/how-to-view-file-diff-in-git-before-commit#10039758
- 6 steps to better release management in JIRA Software: https://www.atlassian.com/blog/fjira-software/jira-release-management-steps
- Git Log's --first-parent Option: http://marcgg.com/blog/2015/08/04/git-first-parent-log/
- How do I view all commits for a specific day?: https://stackoverflow.com/questions/19987099/how-do-i-view-all-commits-for-a-specific-day
- Git Discipline -- combining multiple feature branches, but still keeping them separate?: https://stackoverflow.com/questions/5082161/git-discipline-combining-multiple-feature-branches-but-still-keeping-them-sepa ("git merge feature/A feature/B" from within a third branch from same origin)
- How can I view a git log of just one user's commits?: https://stackoverflow.com/questions/4259996/how-can-i-view-a-git-log-of-just-one-users-commits
- BitBucket's guide to Resolving Merge Conflicts: https://confluence.atlassian.com/bitbucket/resolve-merge-conflicts-704414003.html
- GitHub's guide to Resolving a merge conflict using the command line: https://help.github.com/articles/resolving-a-merge-conflict-using-the-command-line/
- Staging Deleted files: https://stackoverflow.com/questions/12373733/staging-deleted-files
- git -- what to do if you commit to no branch: https://edspencer.net/2009/10/28/git-what-to-do-if-you-commit-to-no-branch/
- What to do with commit made in a detached head: https://stackoverflow.com/questions/7124486/what-to-do-with-commit-made-in-a-detached-head/7124513#7124513
- What Git branching models work for you?: https://stackoverflow.com/questions/2621610/what-git-branching-models-work-for-you
- What is Your Branching Model? : https://paulhammant.com/2013/12/04/what_is_your_branching_model/
- How to modify a specified commit?: https://stackoverflow.com/questions/1186535/how-to-modify-a-specified-commit
- How to clone a specific branch in GIT bitbucket: https://stackoverflow.com/questions/29981000/how-to-clone-a-specific-branch-in-git-bitbucket
- The following untracked working tree files would be overwritten by checkout: https://stackoverflow.com/questions/4858047/the-following-untracked-working-tree-files-would-be-overwritten-by-checkout (use "git checkout -f <BRANCH_NAME>" to force switching branches)
- Git stash pop- needs merge, unable to refresh index: https://stackoverflow.com/questions/9739352/git-stash-pop-needs-merge-unable-to-refresh-index
- Delete old branches in Git: https://hackernoon.com/delete-old-branches-in-git-ab1ec5049dd9
- What is "git tag", How to create tags & How to checkout git remote tag(s): https://stackoverflow.com/questions/35979642/what-is-git-tag-how-to-create-tags-how-to-checkout-git-remote-tags[246][247]
- How can I move a tag on a git branch to a different commit?: https://stackoverflow.com/questions/8044583/how-can-i-move-a-tag-on-a-git-branch-to-a-different-commit#8044605 (shortcut: force delete tag from local & remote, create tag with same name at current point in time)
- Does “git fetch --tags” include “git fetch”?: https://stackoverflow.com/questions/1204190/does-git-fetch-tags-include-git-fetch
- Git Tools - Advanced Merging: https://git-scm.com/book/en/v2/Git-Tools-Advanced-Merging
- Git Branching - Basic Branching and Merging: https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging#_basic_merge_conflicts
- Feature Branching while still following CI: https://martinfowler.com/bliki/FeatureBranch.html
- Git Branching - Rebasing: https://git-scm.com/book/en/v2/Git-Branching-Rebasing
- Interactive rebase in Sourcetree: https://www.atlassian.com/blog/sourcetree/interactive-rebase-sourcetree
- Git - Move Your Latest Commits to Another Branch: https://howchoo.com/git/git-move-your-latest-commits-to-another-branch
- Pull Request "etiquette" guide: https://gist.github.com/mikepea/863f63d6e37281e329f8
- When is the right time to commit or use a branch?: https://blog.scottlogic.com/2019/12/19/source-control-when.html
- Writing Meaningful Commit Messages: https://reflectoring.io/meaningful-commit-messages/
- Git merging .vs. rebasing: https://dzone.com/articles/merging-vs-rebasing
External Links
- wikipedia: Git
- wikipedia: GitHub
- wikipedia: Version control
- wikipedia: Repository (version control)
- wikipedia: Monorepo
- wikipedia: Commit (version control)
- wikipedia: Commit (data management)
- wikipedia: Atomic commit
- wikipedia: Two-phase commit protocol (2PC)
- wikipedia: Three-phase commit protocol (3PC)
- wikipedia: Upstream (software development)
- wikipedia: Downstream (software development)
- wikipedia: Ultra-large-scale systems (ULSS)
- wikipedia: Archive file
- Everyday GIT With 20 Commands Or So: http://www.kernel.org/pub/software/scm/git/docs/everyday.html
- Advanced GIT: http://www.slideshare.net/segv/advanced-git
- Working with both GIT and SVN: http://blog.lysender.com/2010/01/working-both-git-and-svn/
- Here's the Gist of it: https://github.com/blog/118-here-s-the-gist-of-it
- Github Gist - Versioning For Pasted Code: http://www.infoq.com/news/2008/07/gist-versioning-for-pasting;jsessionid=985F5A48B7B1F239F6C119071BE2BA1D
- GitHub hacked, millions of projects at risk of being modified or deleted: http://www.extremetech.com/computing/120981-github-hacked-millions-of-projects-at-risk-of-being-modified-or-deleted
- Stupid trouble with git commit “commit message”: http://stackoverflow.com/questions/5599122/stupid-trouble-with-git-commit-commit-message
- git replacing LF (Unix) with CRLF (Windows) Line-endings: http://stackoverflow.com/questions/1967370/git-replacing-lf-with-crlf
- Create a new file in git bash: http://stackoverflow.com/questions/18932202/create-a-new-file-in-git-bash
- Git for Windows -- .bashrc or equivalent config files for Git Bash shell: http://stackoverflow.com/questions/6883760/git-for-windows-bashrc-or-equivalent-config-files-for-git-bash-shell
- Basics - Tips and Tricks: https://git-scm.com/book/en/v1/Git-Basics-Tips-and-Tricks
- Changing SmartGit Free Trial License to Non-Commercial: http://paikialog.wordpress.com/2011/04/07/changing-smartgit-free-trial-license-to-non-commercial/
- Error when open sourcetree after update: https://jira.atlassian.com/browse/SRCTREEWIN-7897
- Easily Calculate Your Project Version With Git (using Maven/Gradle plugin "jgitver"): http://dzone.com/articles/easily-calculate-your-project-version-with-git
- Introducing the Redesigned Bitbucket: http://blog.bitbucket.org/2012/10/09/introducing-the-redesigned-bitbucket/
- Atlassian Acquires Bitbucket.org, Distributed Version Control System Hosting: https://blogs.atlassian.com/2010/09/atlassian_acquires_bitbucket_org_distributed_version_control_system_hosting/
- Default reviewers for pull requests (BB-9992): https://bitbucket.org/site/master/issues/8810/default-reviewers-for-pull-requests-bb
- How to show or change your Git username or email address: https://alvinalexander.com/git/git-show-change-username-email-address
- Change the author and committer name and e-mail of multiple commits in Git: https://stackoverflow.com/questions/750172/change-the-author-and-committer-name-and-e-mail-of-multiple-commits-in-git
- How to change the commit author for one specific commit?: https://stackoverflow.com/questions/3042437/how-to-change-the-commit-author-for-one-specific-commit#3042512
- Atlassian -- Pull Request Merge Strategies - The Great Debate: https://developer.atlassian.com/blog/2014/12/pull-request-merge-strategies-the-great-debate/
- Atlassian -- Git team workflows - merge or rebase?: https://www.atlassian.com/git/articles/git-team-workflows-merge-or-rebase
- BitBucket -- Merging vs. Rebasing: https://www.atlassian.com/git/tutorials/merging-vs-rebasing
- The Multiple Usages of git rebase --onto: https://dzone.com/articles/the-multiple-usages-of-git-rebase-onto[248]
- How I Stopped Worrying and Learned to Love `git Rebase`: https://drew.thecsillags.com/Stopped-Worrying-And-Love-Git-Rebase/
- Why you should stop using Git rebase: https://medium.com/@fredrikmorken/why-you-should-stop-using-git-rebase-5552bee4fed1
[249] [250] [251] [252] [253] [254] [255] [256] [257] [258] [259] [260]
- How to squash all git commits into one?: http://stackoverflow.com/questions/1657017/how-to-squash-all-git-commits-into-one
- Squash Commits with Git: https://davidwalsh.name/squash-commits-git
- Always Squash and Rebase your Git Commits: https://blog.carbonfive.com/2017/08/28/always-squash-and-rebase-your-git-commits/
- git rebase - is squashing initial commits generally a bad idea?: https://stackoverflow.com/questions/30194526/git-rebase-is-squashing-initial-commits-generally-a-bad-idea
- Git - When to Merge vs. When to Rebase: https://www.derekgourlay.com/blog/git-when-to-merge-vs-when-to-rebase/
- Git Merge vs. Rebase -- What’s the Diff?: https://hackernoon.com/git-merge-vs-rebase-whats-the-diff-76413c117333[261][262][263][264][265][266][267][268]
- Edit a commit message in SourceTree Windows (already pushed to remote): https://stackoverflow.com/questions/17604232/edit-a-commit-message-in-sourcetree-windows-already-pushed-to-remote
- Changing a commit message (CLI): https://help.github.com/articles/changing-a-commit-message/
- Selecting Git commits by commit message: https://blog.sebastian-daschner.com/entries/git-selecting-commit-message
- GIT Good -- A Practical Introduction to GIT and GitHub (Hello GitHub): https://codeburst.io/git-good-part-a-e0d826286a2a
- The Dark Side of the Force Push: http://willi.am/blog/2014/08/12/the-dark-side-of-the-force-push/
- If you cherry pick, your branch model is wrong: http://www.draconianoverlord.com/2013/09/07/no-cherry-picking.html[269]
- Avoiding Git Disasters -- A Gory Story: https://randyfay.com/content/avoiding-git-disasters-gory-story
- 8 Useful but Not Well-Known Git Concepts: https://dzone.com/articles/8-useful-but-not-well-known-git-concepts
- Atlassian -- Guide to GIT merge conflicts: https://www.atlassian.com/git/tutorials/using-branches/merge-conflicts
- Git Workflows: https://medium.com/@jurtzmarcel/git-workflows-cb0c023ca88
- 10 things I hate about Git: https://stevebennett.me/2012/02/24/10-things-i-hate-about-git/
- Difference between CR LF, LF and CR line break types?: https://stackoverflow.com/questions/1552749/difference-between-cr-lf-lf-and-cr-line-break-types
- How to change line-ending settings: https://stackoverflow.com/questions/10418975/how-to-change-line-ending-settings#10419350
- What's the best CRLF (carriage return, line feed) handling strategy with Git?: https://stackoverflow.com/questions/170961/whats-the-best-crlf-carriage-return-line-feed-handling-strategy-with-git
- Mind the End of Your Line: https://adaptivepatchwork.com/2012/03/01/mind-the-end-of-your-line/
- Dealing with line endings: https://help.github.com/articles/dealing-with-line-endings/
- How line ending conversions work with git "core.autocrlf" between different operating systems: https://stackoverflow.com/questions/3206843/how-line-ending-conversions-work-with-git-core-autocrlf-between-different-operat
- Line endings LF vs. CRLF: https://www.reddit.com/r/git/comments/7tfh7c/line_endings_lf_vs_crlf/
- Java ".gitattributes" example: https://github.com/alexkaratarakis/gitattributes/blob/master/Java.gitattributes
- Refreshing a repository after changing line endings: https://help.github.com/articles/dealing-with-line-endings/#refreshing-a-repository-after-changing-line-endings
- Force LF eol in git repo and working copy: https://stackoverflow.com/questions/9976986/force-lf-eol-in-git-repo-and-working-copy#9977954
- git replacing LF with CRLF: https://stackoverflow.com/questions/1967370/git-replacing-lf-with-crlf
- 5 tips for CI-friendly Git repos: https://www.atlassian.com/git/articles/ci-friendly-git-repos
- Dealing with Maven dependencies when switching to Git: https://www.atlassian.com/git/articles/maven-dependencies-versions-merging
- How This Startup (GitLab) Made $10.5 Million in Revenue With Every Single Employee Working From Home: https://www.inc.com/cameron-albert-deitch/2018-inc5000-gitlab.html
- Top 10 GitHub best practices for developers: https://medium.com/datreeio/top-10-github-best-practices-for-developers-d6309a613227
- GitHub -- CODEOWNERS file: https://help.github.com/en/articles/about-code-owners
- The best way to store your ".dotfile" -- A bare Git repository: https://www.atlassian.com/git/tutorials/dotfiles
- git -- Pushing to a Remote Branch with a Different Name: https://penandpants.com/2013/02/07/git-pushing-to-a-remote-branch-with-a-different-name/[270][271]
- The version controlled home directory: https://web.archive.org/web/20120325085518/https://tensixtyone.com/perma/the-version-controlled-home-directory
- Symbolic links in Git: https://www.mokacoding.com/blog/symliks-in-git/
- Git Symlinks in Windows: https://stackoverflow.com/questions/5917249/git-symlinks-in-windows
- How does Git handle symbolic links?: https://stackoverflow.com/questions/954560/how-does-git-handle-symbolic-links
- Token authentication requirements for Git operations: https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/
References
- ↑ Gitorious was acquired by GitLab in 2016: http://getgitorious.com/
- ↑ GitLab Opens CI/CD to GitHub Users: https://dzone.com/articles/gitlab-opens-cicd-to-github-users
- ↑ Continuous Integration with Jenkins and GitLab: https://medium.com/@teeks99/continuous-integration-with-jenkins-and-gitlab-fa770c62e88a
- ↑ GitLab pricing: https://about.gitlab.com/pricing/#gitlab-com
- ↑ GitLab - Feature Comparison: https://about.gitlab.com/pricing/self-managed/feature-comparison/
- ↑ GitHub vs. Bitbucket vs. GitLab vs. Coding: https://medium.com/flow-ci/github-vs-bitbucket-vs-gitlab-vs-coding-7cf2b43888a1
- ↑ The Key Differences -- GitLab vs GitHub vs BitBucket: https://www.amarinfotech.com/gitlab-vs-github-vs-bitbucket.html
- ↑ Basic comparison of "GitLab vs GitHub vs BitBucket": https://stackshare.io/stackups/bitbucket-vs-github-vs-gitlab
- ↑ GitLab Outlines Scope of DevOps Ambitions: https://devops.com/gitlab-outlines-scope-of-devops-ambitions/
- ↑ GitLab Raises $268M to Expand its Leading DevOps Platform to Security, Monitoring, and More: https://about.gitlab.com/press/releases/2019-09-17-gitlab-raises-268m-to-expanding-leading-devops-platform.html
- ↑ 1 in 3 Fortune 500 companies agree -- Bitbucket is the Git solution for professional teams: http://blogs.atlassian.com/2015/09/1-3-fortune-500-companies-agree-bitbucket-git-solution-professional-teams/
- ↑ Bitbucket Server Download Archives: https://www.atlassian.com/software/bitbucket/download
- ↑ Atlassian supported Jenkins integration for Bitbucket Server: https://community.atlassian.com/t5/Bitbucket-articles/Atlassian-supported-Jenkins-integration-for-Bitbucket-Server/ba-p/1148326
- ↑ Atlassian announces "journey to the cloud" migration: https://www.atlassian.com/migration/assess/journey-to-cloud (BitBucket Server/Stash to be made EOL, BitBucket Data Center to have sizable price increase, only recommended for very large organizations with bespoke implementations going forward with most companies likely to move to Atlassian cloud offerings)
- ↑ Atlassian cloud shift quickens with Data Center price hikes: https://www.techtarget.com/searchitoperations/news/252490839/Atlassian-cloud-shift-quickens-with-Data-Center-price-hikes
- ↑ Announcement -- End-of-life for Bitbucket Server hosting on Windows: https://community.developer.atlassian.com/t/announcement-end-of-life-for-bitbucket-server-hosting-on-windows/54847
- ↑ Atlassian cloud sweetens licensing deal for enterprises: https://www.techtarget.com/searchitoperations/news/252495776/Atlassian-cloud-sweetens-licensing-deal-for-enterprises
- ↑ Atlassian cloud woos enterprises with SLA, security boost: https://www.techtarget.com/searchitoperations/news/252470234/Atlassian-cloud-woos-enterprises-with-SLA-security-boost
- ↑ Observations On The Atlassian Outage: https://www.forrester.com/blogs/observations-on-the-atlassian-outage/
- ↑ Migrate from Stash to Bitbucket: https://answers.atlassian.com/questions/33132594/migrate-from-stash-to-bitbucket
- ↑ Atlassian Stash or BitBucket for Git integration?: http://www.di.net.au/Atlassian-Stash-or-BitBucket/ (head-to-head feature comparison from 2014, just before the Atlassian merger & acquisition)
- ↑ How to mirror Bitbucket Cloud and GitHub repositories to Bitbucket Server (Stash): http://stiltsoft.com/blog/2015/10/how-to-mirror-bitbucket-cloud-and-github-repositories-to-bitbucket-server-stash/
- ↑ Sync from BitBucket to Stash: http://answers.atlassian.com/questions/21635053/sync-from-bitbucket-to-stash
- ↑ How to properly mirror a git repository: http://blog.plataformatec.com.br/2013/05/how-to-properly-mirror-a-git-repository
- ↑ Forking a Repository in BitBucket Cloud: https://confluence.atlassian.com/bitbucket/forking-a-repository-221449527.html
- ↑ BitBucket - ActiveDirectory & LDAP integration: https://confluence.atlassian.com/bitbucketserver/connecting-bitbucket-server-to-an-existing-ldap-directory-776640403.html
- ↑ Awesome Graphs for Bitbucket: https://blog.bitbucket.org/2015/08/05/awesome-graphs-for-bitbucket-visualized-statistics-for-git-and-mercurial-repositories/ | BitBucket | Stash (visualized statistics for Git and Mercurial repositories)
- ↑ The new Bitbucket webhooks: https://blog.bitbucket.org/2015/06/24/the-new-bitbucket-webhooks/
- ↑ Troubleshoot Webhooks: https://confluence.atlassian.com/bitbucket/troubleshoot-webhooks-757727842.html
- ↑ Tutorial -- Create and Trigger a Webhook: https://confluence.atlassian.com/bitbucket/tutorial-create-and-trigger-a-webhook-747606432.html
- ↑ BitBucket + Jenkins via WebHooks:
- ↑ BitBucket Server (Stash) plugin for Jenkins: https://marketplace.atlassian.com/plugins/com.nerdwin15.stash-stash-webhook-jenkins/server/overview
- ↑ Configure Bitbucket hook for jenkins: https://gist.github.com/joseraya/6838271
- ↑ BitBucket Jenkins integration: https://community.atlassian.com/t5/Bitbucket-questions/Bit-Bucket-Jenkins-Integration/qaq-p/219232
- ↑ Integrate with BitBucket -- build after each commit: https://www.youtube.com/watch?v=nNaR5Q_pIa4
- ↑ SourceTree password after opening Bitbucket account with gmail: https://stackoverflow.com/questions/15079971/sourcetree-password-after-opening-bitbucket-account-with-gmail
- ↑ What to do if you've committed sensitive data to a Bitbucket Cloud repository: https://community.atlassian.com/t5/Bitbucket-articles/What-to-do-if-you-ve-committed-sensitive-data-to-a-Bitbucket/ba-p/1293546
- ↑ Bitbucket Pipelines FAQ: https://confluence.atlassian.com/bitbucket/bitbucket-pipelines-faq-827104769.html (a replacement for Bamboo Cloud; "CI server" - Bamboo still exists as standalone self-hosted Bamboo Server version - that grew out of Atlassian research into GIT Workflows)
- ↑ Bamboo Cloud - "End Of Life" announcement (replaced by BitBucket Pipelines): https://confluence.atlassian.com/bamboocloud/bamboo-cloud-eol-827125716.html
- ↑ Bamboo Cloud - glossary: https://confluence.atlassian.com/bamboocloud/glossary-737184508.html (many similarities to list of supported terms in BitBucket Pipeline)
- ↑ An inside look at Bitbucket Pipelines, now with team variables: https://blog.bitbucket.org/2016/08/04/inside-look-bitbucket-pipelines-now-team-variables/
- ↑ Git Workflows a-la-carte: https://summit.atlassian.com/archives/2013/inside-the-development-team/git-workflows-a-la-carte
- ↑ BitBucket -- Language Guides: https://confluence.atlassian.com/bitbucket/language-guides-856821477.html
- ↑ Bitbucket Pipelines Provides Continuous Delivery within Atlassian’s Bitbucket Cloud: https://www.infoq.com/news/2016/06/atlassian-bitbucket-pipelines
- ↑ Increment a number in Bitbucket Pipelines: https://community.atlassian.com/t5/Bitbucket-questions/Increment-a-number-in-Bitbucket-pipelines/qaq-p/348030
- ↑ Unable to resolve dependency when the artifact is in a private repository/installed manually: https://issues.apache.org/jira/browse/MANTRUN-196
- ↑ BitBucket Jenkins Continuous Integration - Webhook & ngrok: https://www.youtube.com/watch?v=rcRQRJ7yRag
- ↑ Notifications for Bitbucket Pipelines: https://confluence.atlassian.com/bitbucket/notifications-for-bitbucket-pipelines-857053284.html
- ↑ Troubleshoot connections with Jira applications: https://confluence.atlassian.com/bitbucket/troubleshoot-connections-with-jira-applications-794374489.html
- ↑ Connect Bitbucket Cloud to Jira Software Cloud: https://confluence.atlassian.com/bitbucket/connect-bitbucket-cloud-to-jira-software-cloud-814190686.html
- ↑ JIRA-BitBucket integrations: https://www.atlassian.com/software/jira/bitbucket-integration
- ↑ Environment variables in BitBucket Pipelines: https://confluence.atlassian.com/bitbucket/environment-variables-in-bitbucket-pipelines-794502608.html
- ↑ Tips for scripting tasks with Bitbucket Pipelines: https://www.atlassian.com/continuous-delivery/tips-for-scripting-tasks-with-Bitbucket-Pipelines
- ↑ Bitbucket pipeline - possibility to merge one branch to another: https://stackoverflow.com/questions/43954327/bitbucket-pipeline-possibility-to-merge-one-branch-to-another
- ↑ Increment a number in Bitbucket pipelines: https://community.atlassian.com/t5/Bitbucket-questions/Increment-a-number-in-Bitbucket-pipelines/qaq-p/348030
- ↑ Build number that increments on every build: https://bitbucket.org/site/master/issues/12838/build-number-that-increments-on-every ($BITBUCKET_BUILD_NUMBER now available)
- ↑ Add structure to your pipeline with multiple steps in Bitbucket Pipelines: https://blog.bitbucket.org/2017/10/03/multiple-steps-in-bitbucket-pipelines/
- ↑ BrowserStack - Bitbucket Pipelines test integration: https://bitbucket.org/9ikhan/test-repo
- ↑ Configuring BitBucket Pipelines: https://confluence.atlassian.com/bitbucket/configure-bitbucket-pipelines-yml-792298910.html
- ↑ Analyze Code with Code Climate (Pipelines integration): https://bitbucket.org/ian_buchanan/pipeline-example-codeclimate
- ↑ How to access my local repository (from within a Pipeline): https://community.atlassian.com/t5/Bitbucket-questions/How-do-access-my-local-repository/qaq-p/752382
- ↑ BitBucket Pipelines + BrowserStack integration: https://www.browserstack.com/automate/continuous-integration#bitbucket
- ↑ BitBucket Pipeline tasks: https://confluence.atlassian.com/bitbucket/tasks-958765631.html
- ↑ Building a Bitbucket Pipe as a casual coder: https://community.atlassian.com/t5/Bitbucket-Pipelines-articles/Building-a-Bitbucket-Pipe-as-a-casual-coder/ba-p/1033004?utm_source=list&utm_medium=email&utm_campaign=corporate_online-community&utm_content=bitbucket-community-newsletter_EML-4581&jobid=104049800&subid=1242378284
- ↑ Run a set of command on deployment server after bitbucket pipeline push?: https://stackoverflow.com/questions/46744598/run-a-set-of-command-on-deployment-server-after-bitbucket-pipeline-push
- ↑ YAML anchors support in BitBucket Pipelines: https://confluence.atlassian.com/bitbucket/yaml-anchors-960154027.html (keep DRY with named "repeatable steps")
- ↑ Limit Bitbucket pipelines to specific branches: https://code-maven.com/limit-bitbucket-pipelines-to-specific-branches
- ↑ Bitbucket Pipelines share some steps (to achieve DRY) between branches: https://stackoverflow.com/questions/45558284/bitbucket-pipelines-share-some-steps-between-branches
- ↑ Branch workflows in BitBucket Pipelines: https://confluence.atlassian.com/bitbucket/branch-workflows-856697482.html
- ↑ Using artifacts in steps: https://confluence.atlassian.com/bitbucket/using-artifacts-in-steps-935389074.html
- ↑ Test reporting in Pipelines: https://confluence.atlassian.com/bitbucket/test-reporting-in-pipelines-939708543.html
- ↑ Bitbucket Pipeline fails saying that step is empty, null or missing: https://community.atlassian.com/t5/Bitbucket-Pipelines-questions/Bitbucket-Pipeline-fails-saying-that-step-is-empty-null-or/qaq-p/1057440
- ↑ Debug your pipelines locally with Docker: https://confluence.atlassian.com/bitbucket/debug-your-pipelines-locally-with-docker-838273569.html
- ↑ Troubleshooting Bitbucket Pipelines: https://confluence.atlassian.com/bitbucket/troubleshooting-bitbucket-pipelines-792298903.html
- ↑ Incomplete error message in Pipelines: https://bitbucket.org/site/master/issues/13650/incomplete-error-message-in-pipelines
- ↑ Fix "package 'chromium-browser' has no installation candidate" error in Docker containers: https://stackoverflow.com/questions/47203812/package-chromium-browser-has-no-installation-candidate (by first installing all required depedencies)
- ↑ How to configure the CHROME_BIN in pipeline: https://community.atlassian.com/t5/Bitbucket-Pipelines-questions/How-to-configure-the-CHROME-BIN-in-pipeline/qaq-p/1018855
- ↑ Chrome remote installation: https://gist.github.com/nicobytes/e92b9b4fb7070a925662a48dd038cf67
- ↑ Example demonstrating using Puppeteer to launch a headless Chromium instance for headless browser testing inside Bitbucket Pipelines: https://bitbucket.org/bitbucketpipelines/example-chromium-headless-puppeteer/src/master/
- ↑ Running Lighthouse using headless Chrome: https://github.com/GoogleChrome/lighthouse/blob/master/docs/headless-chrome.md#running-lighthouse-using-headless-chrome
- ↑ environment variable CHROME_PATH must be set to executable of a build of Chromium: https://github.com/GoogleChrome/lighthouse/issues/5424
- ↑ Continuous Testing at scale: The new mabl and Bitbucket Pipelines CI/CD integration: https://bitbucket.org/blog/continuous-testing-at-scale-the-new-mabl-and-bitbucket-ci-cd-integration
- ↑ How to configure Bitbucket Pipelines for an Android project: https://proandroiddev.com/bitbucket-pipelines-android-6eeff631f2eb
- ↑ It’s official! Announcing Runners in Bitbucket Pipelines: https://bitbucket.org/blog/pipelines-runners
- ↑ Configure your runner in bitbucket-pipelines.yml: https://support.atlassian.com/bitbucket-cloud/docs/configure-your-runner-in-bitbucket-pipelines-yml/
- ↑ Branching a Repository: https://confluence.atlassian.com/bitbucket/branching-a-repository-223217999.html?_ga=2.167489337.626764153.1496772028-1637114785.1468603717
- ↑ Workflow for Git feature branching: https://confluence.atlassian.com/bitbucket/workflow-for-git-feature-branching-814201830.html?_ga=2.54327336.1254686475.1496913344-100737214.1470925294
- ↑ Using branches in Bitbucket Server: https://confluence.atlassian.com/bitbucketserver/using-branches-in-bitbucket-server-776639968.html (Configuring branching models --> Branch types)
- ↑ Introducing code-aware search for Bitbucket Cloud: https://blog.bitbucket.org/2017/05/02/introducing-code-aware-search-for-bitbucket-cloud/
- ↑ What are the Bitbucket Cloud IP addresses I should use to configure my corporate firewall?: https://confluence.atlassian.com/bitbucket/what-are-the-bitbucket-cloud-ip-addresses-i-should-use-to-configure-my-corporate-firewall-343343385.html
- ↑ Branch permission patterns: https://confluence.atlassian.com/bitbucketserver/branch-permission-patterns-776639814.html
- ↑ Bringing you speed, power and flexibility with 12 new features in Bitbucket Pipelines: https://blog.bitbucket.org/2017/08/22/bringing-speed-power-flexibility-12-new-features-bitbucket-pipelines/
- ↑ Atlassian -- Stash/BitBucket-JIRA Integration Plugin (REST Resources): https://developer.atlassian.com/static/rest/stash/3.11.3/stash-jira-integration-rest.html?_ga=2.157625402.1000852708.1505931611-1172524177.1500495842
- ↑ Get commits info of a JIRA issue using REST API: https://community.atlassian.com/t5/Answers-Developer-Questions/Get-commits-info-of-a-JIRA-issue-using-REST-API/qaq-p/530323
- ↑ Syncing and merging come to Bitbucket: https://blog.bitbucket.org/2013/02/04/syncing-and-merging-come-to-bitbucket/
- ↑ BitBucket-JIRA integration: https://confluence.atlassian.com/bitbucketserver/jira-integration-776639874.html
- ↑ Use Smart Commits: https://confluence.atlassian.com/bitbucket/processing-jira-software-issues-with-smart-commit-messages-298979931.html
- ↑ Smart Commits -- apply only for specific branches?: https://community.atlassian.com/t5/Jira-questions/Smart-Commits-apply-only-for-specific-branches/qaq-p/176435
- ↑ Is there any Bitbucket Pipeline API available? : https://community.atlassian.com/t5/Answers-Developer-Questions/Is-there-any-Bitbucket-Pipeline-API-available/qaq-p/538056
- ↑ BitBucket Pipelines API -- trigger a pipeline remotely, query about past runs, etc: https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Bworkspace%7D/%7Brepo_slug%7D/pipelines/
- ↑ fatal: bad revision when using git log with BITBUCKET_COMMIT: https://community.atlassian.com/t5/Bitbucket-questions/fatal-bad-revision-when-using-git-log-with-BITBUCKET-COMMIT/qaq-p/886297
- ↑ How to keep DRY with BitBucket-Pipelines?: https://community.atlassian.com/t5/Answers-Developer-Questions/How-to-keep-DRY-with-BitBucket-Pipelines/qaq-p/501315
- ↑ How to integrate Android project deployment to Hokeyapp with Bitbucket Pipelines: https://medium.com/@ivan.dimitrov.work/integrate-hokeyapp-with-bitbucket-for-android-project-d7f3751b2bb4
- ↑ Permission denied from Bitbucket Pipeline: https://stackoverflow.com/questions/52973719/permission-denied-from-bitbucket-pipeline
- ↑ Trigger Pipeline (from a BitBucket Pipeline): https://bitbucket.org/atlassian/trigger-pipeline/src/0.3.0/
- ↑ Confidence to release early and often -- Introducing Bitbucket Deployments: https://blog.bitbucket.org/2017/12/05/introducing-bitbucket-deployments/
- ↑ yCombinator News -- Atlassian announces Bitbucket Deployments: https://news.ycombinator.com/item?id=15852929
- ↑ Atlassian announces Bitbucket Deployments: Giving teams confidence to release early and often: https://www.reddit.com/r/programming/comments/7hqw5k/atlassian_announces_bitbucket_deployments_giving/
- ↑ Deploy build artifacts to Bitbucket Downloads: https://confluence.atlassian.com/bitbucket/deploy-build-artifacts-to-bitbucket-downloads-872124574.html
- ↑ Deploying websites to FTP or Amazon S3 with BitBucket Pipelines: https://www.savjee.be/2016/06/Deploying-website-to-ftp-or-amazon-s3-with-BitBucket-Pipelines/
- ↑ Getting a download from BitBucket with Curl (wget doesn’t work): https://invent.life/nesity/getting-a-download-from-bitbucket-with-curl-wget-doesnt-work/
- ↑ Download private BitBucket repository zip file using http authentication: https://stackoverflow.com/questions/17682143/download-private-bitbucket-repository-zip-file-using-http-authentication
- ↑ Unable to download files hosted on Bitbucket after OAuth setting credentials: https://github.com/composer/composer/issues/5584#issuecomment-250239952 (things learned while troubleshooting)
- ↑ Is it possible to use multiple docker images in bitbucket pipeline?: https://stackoverflow.com/questions/40166537/is-it-possible-to-use-multiple-docker-images-in-bitbucket-pipeline
- ↑ Javascript (Node.js) with Bitbucket Pipelines: https://confluence.atlassian.com/bitbucket/javascript-node-js-with-bitbucket-pipelines-873891287.html
- ↑ Use Docker images as build environments: https://confluence.atlassian.com/bitbucket/use-docker-images-as-build-environments-792298897.html
- ↑ BitBucket Pipelines - YAAT CI/CD (PRESENTATION): http://bailey-jones.com/bitbucket-presentation/presentation/ (Yet Another Approach To Continuous Integration & Continuous Delivery)
- ↑ Debug your pipelines locally with Docker: https://confluence.atlassian.com/bitbucket/debug-your-pipelines-locally-with-docker-838273569.html
- ↑ Example "bitbucket-pipelines.yml" for LAMP (PHP & MySQL) project: https://github.com/QoboLtd/project-template/blob/master/bitbucket-pipelines.yml
- ↑ Building and pushing Docker images: https://bitbucket.org/site/master/issues/12790/building-and-pushing-docker-images
- ↑ How do I set up ssh public-key authentication so that I can use ssh, sftp or scp from my Bitbucket Pipelines pipeline?: https://community.atlassian.com/t5/Bitbucket-questions/How-do-I-set-up-ssh-public-key-authentication-so-that-I-can-use/qaq-p/171671
- ↑ Use SSH keys in Bitbucket Pipelines: https://confluence.atlassian.com/bitbucket/use-ssh-keys-in-bitbucket-pipelines-847452940.html (a crucial step is to create the my_known_hosts file and add it to your repo)
- ↑ Problem getting BitBucket Pipelines to commit back version change to its own GIT repo: https://community.atlassian.com/t5/Bitbucket-questions/Problem-getting-BitBucket-Pipelines-to-commit-back-version/qaq-p/760022 (MY QUESTION)
- ↑ Increment a number in Bitbucket pipelines: https://community.atlassian.com/t5/Bitbucket-questions/Increment-a-number-in-Bitbucket-pipelines/qaq-p/348030
- ↑ How can I use SSH in Bitbucket Pipelines?: https://community.atlassian.com/t5/Bitbucket-questions/How-can-I-use-SSH-in-Bitbucket-Pipelines/qaq-p/347345
- ↑ BitBucket Cloud docs -- Push back to your repository: https://support.atlassian.com/bitbucket-cloud/docs/push-back-to-your-repository/
- ↑ BitBucket community -- Push back to remote from Pipelines: https://bitbucket.org/site/master/issues/13213/push-back-to-remote-from-pipelines
- ↑ Trouble with SSH and Bitbucket Pipelines: https://community.atlassian.com/t5/Bitbucket-questions/Trouble-with-SSH-and-Bitbucket-Pipelines/qaq-p/604330
- ↑ Using artifacts in BitBucket Pipelines build steps: https://confluence.atlassian.com/bitbucket/using-artifacts-in-steps-935389074.html
- ↑ Run BitBucket Pipelines manually: https://confluence.atlassian.com/bitbucket/run-pipelines-manually-861242583.html
- ↑ Enhance Deployments to support flexible environments: https://bitbucket.org/site/master/issues/15362/enhance-deployments-to-support-flexible
- ↑ Customize your deployment environments: https://confluence.atlassian.com/bitbucket/customize-your-deployment-environments-969532122.html
- ↑ Git Large File Storage in Bitbucket: https://confluence.atlassian.com/bitbucket/git-large-file-storage-in-bitbucket-829078514.html
- ↑ Use Git LFS with Bitbucket: https://confluence.atlassian.com/bitbucket/use-git-lfs-with-bitbucket-828781636.html (limited to 1GB files for Free account, 5GB files for regular, 10GB files for Premium; up to 100GB "extra file storage" can be "purchased")
- ↑ What kind of limits do you have on repository/file/upload size?: https://confluence.atlassian.com/bitbucket/what-kind-of-limits-do-you-have-on-repository-file-upload-size-273877699.html
- ↑ Push back to remote from Pipelines: https://bitbucket.org/site/master/issues/13213/push-back-to-remote-from-pipelines
- ↑ Ability to run a set of commands before every pipeline, like "before_script" in gitlab-ci: https://bitbucket.org/site/master/issues/13773/ability-to-run-a-set-of-commands-before
- ↑ How can I configure my pipeline to control versioning? : https://community.atlassian.com/t5/Answers-Developer-Questions/How-can-I-configure-my-pipeline-to-control-versioning/qaq-p/553721
- ↑ How can I add code to a numeric list's item without breaking the numbering?: https://stackoverflow.com/questions/29150086/how-can-i-add-code-to-a-numeric-lists-item-without-breaking-the-numbering
- ↑ Markdown -- continue numbered list: https://stackoverflow.com/questions/18088955/markdown-continue-numbered-list#18089124
- ↑ New IP addresses for Bitbucket Cloud: https://blog.bitbucket.org/2018/07/02/new-ip-addresses-bitbucket-cloud/
- ↑ How Bitbucket enriches their Slack app UX with user mapping: https://medium.com/slack-developer-blog/how-bitbucket-enriches-their-slack-app-ux-with-user-mapping-a39e06d610a6
- ↑ Meet Bitbucket Cloud’s new chatbot: https://blog.bitbucket.org/2018/04/04/meet-bitbucket-clouds-new-chatbot/
- ↑ BitBucket Cloud .vs. BitBucket Server (Stash) - Feature matrix: https://www.atlassian.com/software/bitbucket/features
- ↑ Atlassian's perspective on Bitbucket Cloud .vs. GitLab Cloud: https://bitbucket.org/product/comparison/bitbucket-vs-gitlab
- ↑ Atlassian's perspective on Bitbucket Server (Stash) .vs. GitLab Server: https://www.atlassian.com/software/bitbucket/server/comparison/bitbucket-data-center-vs-gitlab
- ↑ 6 new Bitbucket Cloud features that spark joy: https://bitbucket.org/blog/6-new-bitbucket-cloud-features-that-spark-joy
- ↑ BitBucket Cloud -- Set email aliases: https://confluence.atlassian.com/bitbucket/set-email-aliases-792298714.html
- ↑ Map existing commits to username aliases: https://confluence.atlassian.com/bitbucket/map-existing-commits-to-username-aliases-272597445.html
- ↑ Continuous Integration -- A Complete Guide to Using BitBucket Pipelines With Maven Repositories: https://www.cloudrepo.io/articles/continuous-integration-a-complete-guide-to-bitbucket-pipelines-with-maven-repositories.html
- ↑ Squash commits when merging a Git branch with Bitbucket: https://bitbucket.org/blog/git-squash-commits-merging-bitbucket
- ↑ I can not commit my Git LFS files to BitBucket: https://community.atlassian.com/t5/Sourcetree-questions/I-can-not-commit-my-Git-LFS-files-to-bitbucket/qaq-p/909522 (common cause is size of commit/file too big, or, error due to VPN/Proxy/Firewalls)
- ↑ Broken pipe when pushing to git repository: https://www.thetopsites.net/article/54238315.shtml
- ↑ Windows - Fail to clone repository with git lfs and large files > 5GB: https://stackoverflow.com/questions/41716509/fail-to-clone-repository-with-git-lfs (run the following: git lfs install --skip-smudge then git clone <URL> then git lfs pull lastly git lfs install --force)
- ↑ Adding a new SSH key to your GitHub account: https://help.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account
- ↑ 15 Tips to Enhance your Github Flow: https://hackernoon.com/15-tips-to-enhance-your-github-flow-6af7ceb0d8a3
- ↑ Issue and Pull Request templates: https://blog.github.com/2016-02-17-issue-and-pull-request-templates/
- ↑ A bright future for GitHub: https://blog.github.com/2018-06-04-github-microsoft/
- ↑ Microsoft + GitHub = Empowering Developers: https://blogs.microsoft.com/blog/2018/06/04/microsoft-github-empowering-developers/
- ↑ When GitHub met Microsoft: Good for enterprise DevOps?: https://techbeacon.com/when-github-met-microsoft-good-enterprise-devops
- ↑ How GitHub Democratized Coding, Built a $2 Billion Business, and Found a New Home at Microsoft: https://medium.com/@hnshah/how-github-democratized-coding-built-a-2-billion-business-and-found-a-new-home-at-microsoft-bd94d2dea2a9
- ↑ Game Of Codes -- Reasons Why Developers Use Only Three Repositories: https://www.cleveroad.com/blog/github-vs-bitbucket-vs-gitlab-developers-research
- ↑ GitHub Draft Pull Requests Enable New Collaboration Workflows: https://www.infoq.com/news/2019/02/github-draft-pull-requests
- ↑ Customizing your GitHub profile - Scripting: https://blog.frankel.ch/customizing-github-profile/1/
- ↑ Customizing your GitHub profile - Building: https://blog.frankel.ch/customizing-github-profile/2/ (automated builds within GitHub using "GitHub Actions")
- ↑ GitHub abandons 'master' term (using "main" in its place) to avoid slavery row: https://www.bbc.com/news/technology-53050955
- ↑ Git password authentication is shutting down: https://github.blog/changelog/2021-08-12-git-password-authentication-is-shutting-down/
- ↑ Token authentication requirements for Git operations: https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/#what-you-need-to-do-today
- ↑ GitHub deprecates account passwords for authenticating Git operations: https://www.bleepingcomputer.com/news/security/github-deprecates-account-passwords-for-authenticating-git-operations/
- ↑ Proactively prevent secret leaks with GitHub Advanced Security secret scanning: https://github.blog/2022-04-04-push-protection-github-advanced-security/
- ↑ Dependabot alerts now surface if your code is calling a vulnerability: https://github.blog/2022-04-14-dependabot-alerts-now-surface-if-code-is-calling-vulnerability/
- ↑ Git branching -- master vs. origin/master vs. remotes/origin/master: https://stackoverflow.com/questions/10588291/git-branching-master-vs-origin-master-vs-remotes-origin-master
- ↑ Use Sourcetree branches to merge an update: https://confluence.atlassian.com/bitbucket/use-sourcetree-branches-to-merge-an-update-732268925.html
- ↑ Merge or Rebase?: https://blog.sourcetreeapp.com/2012/08/21/merge-or-rebase/
- ↑ Git Rebase .vs. Git Merge explained: https://reflectoring.io/git-rebase-merge/
- ↑ GitFlow -- what is difference between release and master branches?: https://stackoverflow.com/questions/39902639/gitflow-what-is-difference-between-release-and-master-branches
- ↑ Gitflow - the easy release management workflow: https://blog.axosoft.com/gitflow/
- ↑ Git Flow Workflow: https://leanpub.com/git-flow/read
- ↑ Learn Version Control with Git & Gitflow: https://www.git-tower.com/learn/git/ebook/en/desktop-gui/advanced-topics/git-flow
- ↑ Git branching done right with Gitflow & improving code quality with code reviews: https://dev.to/hitman666/git-branching-done-right-with-gitflow--improving-code-quality-with-code-reviews
- ↑ Git Flow Versioning: http://ajake.ginnivan.net/git-flow-versioning/
- ↑ Make Jenkins speak Git Flow: https://neoteric.eu/make-jenkins-speak-git-flow
- ↑ A real-life git workflow. Why git flow does not work for us: http://luci.criosweb.ro/a-real-life-git-workflow-why-git-flow-does-not-work-for-us/
- ↑ Still using GitFlow? What about a simpler alternative?: https://hackernoon.com/still-using-gitflow-what-about-a-simpler-alternative-74aa9a46b9a3
- ↑ Git & gitflow - commands quick reference: https://www.slideshare.net/frangarcia/git-and-git-flow
- ↑ A practical take on GitFlow and Semantic Versioning: https://www.fredonism.com/a-practical-take-on-gitflow-and-semantic-versioning
- ↑ Gitflow — Branch Guide: https://medium.com/@rafavinnce/gitflow-branch-guide-8a523360c053
- ↑ 30 Days of DevOps (at NTT Data group) - Gitflow vs Github flow: https://eoblog.net/2019/05/01/30-days-of-devops-gitflow-vs-github-flow/
- ↑ Trunk-based Development vs. Git Flow: https://www.toptal.com/software/trunk-based-development-git-flow
- ↑ Gitflow considered harmful: http://endoflineblog.com/gitflow-considered-harmful
- ↑ GitHub Flow (inspried by git-flow): http://scottchacon.com/2011/08/31/github-flow.html
- ↑ Five tips for CI-friendly Git repos: https://www.atlassian.com/git/articles/ci-friendly-git-repos
- ↑ What is the difference between `git merge` and `git merge --no-ff`?: https://stackoverflow.com/questions/9069061/what-is-the-difference-between-git-merge-and-git-merge-no-ff
- ↑ “Merge pull request” Considered Harmful: https://blog.spreedly.com/2014/06/24/merge-pull-request-considered-harmful/#.Vf2oMyBVikp
- ↑ What is AVH??: https://github.com/petervanderdoes/gitflow-avh/issues/242 (ANSWER: AVH="A Virtual Home", the author of the fork's blog from which he customizes software)
- ↑ Git or SVN? How Nuance Healthcare chose a Git branching model?: https://www.atlassian.com/git/articles/git-or-svn-git-branching-model (they chose Gitflow)
- ↑ GitFlow practical uses of branches over time: https://buildamodule.com/video/change-management-and-version-control-deploying-releases-features-and-fixes-with-git-how-to-use-a-scalable-git-branching-model-called-gitflow#viewing
- ↑ A short introduction to Git Flow: https://vimeo.com/16018419
- ↑ A successful Git branching model considered harmful: https://barro.github.io/2016/02/a-succesful-git-branching-model-considered-harmful/
- ↑ Understanding the "GitHub flow": https://guides.github.com/introduction/flow/ (significantly simpler than full "gitflow"... basically advises feature branches that release then merge back to mainline branch)
- ↑ Trunk-based Development: https://trunkbaseddevelopment.com/
- ↑ git-bisect - Use binary search to find the commit that introduced a bug: https://git-scm.com/docs/git-bisect
- ↑ git-gc - Cleanup unnecessary files and optimize the local repository: https://git-scm.com/docs/git-gc
- ↑ Please stop recommending Git Flow!: https://georgestocker.com/2020/03/04/please-stop-recommending-git-flow/
- ↑ HackerNews -- Please stop recommending Gitflow: https://news.ycombinator.com/item?id=22485489
- ↑ Gitflow is a Poor Branching Model Hack: https://hackernoon.com/gitflow-is-a-poor-branching-model-hack-d46567a156e7
- ↑ Git flow for agile teams is a no no: https://medium.com/@raphaelyoshiga/git-flow-for-agile-teams-is-a-no-no-4c202647ac09
- ↑ GitFlow considered harmful: https://www.endoflineblog.com/gitflow-considered-harmful
- ↑ GitFlow is anti-agile: https://jhall.io/archive/2021/03/09/gitflow-is-anti-agile/
- ↑ Gitflow Agile Tweak: https://www.reddit.com/r/programming/comments/3vb2aa/gitflow_agile_tweak/
- ↑ Enhanced Git Flow Explained: https://www.toptal.com/gitflow/enhanced-git-flow-explained
- ↑ GitOps -- ‘Git Push’ All the Things (review of the presentation): https://thenewstack.io/gitops-git-push-all-the-things/
- ↑ GitOps 101 -- What Is GitOps, and Why Would You Use It?: https://www.twistlock.com/2018/08/06/gitops-101-gitops-use/
- ↑ Is GitOps the next big thing in DevOps?: https://www.atlassian.com/git/tutorials/gitops
- ↑ Giggle - A graphical (Ubuntu) frontend for the git content tracker: http://www.ubuntugeek.com/giggle-a-graphical-frontend-for-the-git-content-tracker.html#more-4356
- ↑ How to disable Git Credential Manager for Windows?: https://stackoverflow.com/questions/37182847/how-to-disable-git-credential-manager-for-windows
- ↑ ignoring any 'bin' directory on a git project: https://stackoverflow.com/questions/1470572/ignoring-any-bin-directory-on-a-git-project
- ↑ SourceTree for Windows 2.0: New UI, faster performance, and Microsoft Git Virtual File System support: https://blog.sourcetreeapp.com/2017/04/27/sourcetree-for-windows-2-0-new-ui-faster-performance-and-microsoft-git-virtual-file-system-support/
- ↑ sourcetree won't open - gcmw.zip error: https://community.atlassian.com/t5/Sourcetree-questions/sourcetree-won-t-open-gcmw-zip-error/qaq-p/652774
- ↑ Cannot clone a repository from Github using Sourcetree, embedded git command line works perfectly: https://community.atlassian.com/t5/Sourcetree-questions/Cannot-clone-a-repository-from-Github-using-Sourcetree-embedded/qaq-p/30371
- ↑ About git path for Sourcetree -- resolve the "template not found" warnings: https://community.atlassian.com/t5/Git-questions/About-git-path-for-Sourcetree/qaq-p/186483 (FIX is to add [init] templatedir = C:/Users/<USERNAME>/AppData/Local/Programs/Git/mingw64/share/git-core/templates to "C:/Users/<USERNAME>/.gitconfig", where the "[init]" part appears above followed by a linebreak... on Mac use [init] templatedir = /Applications/SourceTree.app/Contents/Resources/git_local/share/git-core/templates )
- ↑ Can't install Sourcetree on Windows 10: https://community.atlassian.com/t5/Sourcetree-questions/can-t-install-Sourcetree-on-Windows-10/qaq-p/763806
- ↑ Sourcetree keeps asking for bitbucket password on Windows: https://community.atlassian.com/t5/Sourcetree-questions/Sourcetree-keeps-asking-for-bitbucket-password-on-windows/qaq-p/241278
- ↑ Sourcetree keeps asking for login and password on MAC: https://community.atlassian.com/t5/Sourcetree-questions/Sourcetree-keeps-asking-for-login-and-password/qaq-p/146765
- ↑ Unbundle Git-LFS and git-flow dependencies in Sourcetree: https://confluence.atlassian.com/sourcetreekb/unbundle-git-lfs-and-git-flow-dependencies-in-sourcetree-950827825.html
- ↑ Sourcetree 2.6.10 ArgumentException encountered. An item with the same key has already been added : https://community.atlassian.com/t5/Sourcetree-questions/Sourcetree-2-6-10-ArgumentException-encountered-An-item-with-the/qaq-p/909718
- ↑ Error "An item with the same key(...)" when pulling / pushing from Azure DevOps: https://jira.atlassian.com/browse/SRCTREEWIN-10730
- ↑ Sourcetree 2.6.10 ArgumentException encountered. An item with the same key has already been added : https://community.atlassian.com/t5/Sourcetree-questions/Sourcetree-2-6-10-ArgumentException-encountered-An-item-with-the/qaq-p/909718 (suggests downgrading System GIT from 2.19.1 to 2.19.0... OR... upgrading just Git Credential Manager to a patch version until the fix gets bundled in a new "msysgit" release)
- ↑ Sourcetree keeps asking for bitbucket password on windows : https://community.atlassian.com/t5/Sourcetree-questions/Sourcetree-keeps-asking-for-bitbucket-password-on-windows/qaq-p/241278
- ↑ In SourceTree, how do I squash commits?: https://community.atlassian.com/t5/Sourcetree-questions/In-SourceTree-how-do-I-squash-commits/qaq-p/345666
- ↑ SourceTree log file location: https://confluence.atlassian.com/sourcetreekb/sourcetree-logfile-location-675384748.html
- ↑ SourceTree on Windows is not prompting for password when connecting to git repository: https://community.atlassian.com/t5/Sourcetree-questions/SourceTree-on-Windows-is-not-prompting-for-password-when/qaq-p/390492
- ↑ Git - SVN users' Crash Course guide: http://git.or.cz/course/svn.html (backup of main link)
- ↑ Choosing a Git Branching Strategy: https://medium.com/@jezhalford/choosing-a-git-branching-strategy-cd7a774a68a1
- ↑ MSysGit -- InstallMSysGit step-by-step: https://git.wiki.kernel.org/index.php/MSysGit:InstallMSysGit (NOTE: msysgit project has been partially integrated into "GIT for Windows" then phased out)
- ↑ Getting Started - Git Basics: https://git-scm.com/book/en/v2/Getting-Started-Git-Basics
- ↑ Git Server Like GitHub? [closed]: http://stackoverflow.com/questions/5507489/git-server-like-github
- ↑ My Git Workflow: https://web.archive.org/web/20140216105224/http://blog.osteele.com/posts/2008/05/my-git-workflow
- ↑ The Thing About Git: 2ndscale.com/rtomayko/2008/the-thing-about-git
- ↑ How I stopped missing Darcs and started loving Git:https://web.archive.org/web/20160406224409/http://blog.moertel.com/posts/2007-12-10-how-i-stopped-missing-darcs-and-started-loving-git.html
- ↑ Git Forks and Upstreams -- How-to and a cool tip: https://www.atlassian.com/git/tutorials/git-forks-and-upstreams
- ↑ Top 20 Git Commands With Examples: https://dzone.com/articles/top-20-git-commands-with-examples
- ↑ 35 GIT commands with examples: https://dzone.com/articles/top-35-git-commands-with-examples-and-bonus
- ↑ Basic Branching and Merging: https://git-scm.com/book/en/v2/Git-Branching-Basic-Branching-and-Merging'
- ↑ A Tutorial on Git Merge: https://dzone.com/articles/a-tutorial-on-git-merge
- ↑ How to checkout a previous Tag in Git: https://pinkstone.co.uk/how-to-checkout-a-previous-tag-in-git/
- ↑ Git Basics - Tagging: https://git-scm.com/book/en/v2/Git-Basics-Tagging
- ↑ Don’t Fear The Rebase: https://hackernoon.com/dont-fear-the-rebase-bca683888dae
- ↑ Don't Be Scared of git rebase: https://nathanleclaire.com/blog/2014/09/14/dont-be-scared-of-git-rebase/
- ↑ A Git Workflow Using Rebase: https://medium.com/singlestone/a-git-workflow-using-rebase-1b1210de83e5
- ↑ Master the Rebase (and the Other Way Around): https://blog.algolia.com/master-git-rebase/
- ↑ The Git Rebase Introduction I Wish I'd Had: https://dev.to/maxwell_dev/the-git-rebase-introduction-i-wish-id-had
- ↑ How I got over my irrational fear of git: https://codeburst.io/how-i-got-rid-of-my-irrational-fear-of-git-rebase-25a12095e45e
- ↑ Git, Feature Branches, and Jenkins – or how I learned to stop worrying about broken builds: https://twasink.net/2011/09/20/git-feature-branches-and-jenkins-or-how-i-learned-to-stop-worrying-about-broken-builds/
- ↑ A Git Workflow for Agile Teams: http://reinh.com/blog/2009/03/02/a-git-workflow-for-agile-teams.html
- ↑ A Rebase Workflow for Git: https://randyfay.com/content/rebase-workflow-git
- ↑ A rebase-based workflow: https://brokenco.de/2010/04/02/a-rebase-based-workflow.html
- ↑ How to make Git pull use rebase by default for all my repositories?: https://stackoverflow.com/questions/13846300/how-to-make-git-pull-use-rebase-by-default-for-all-my-repositories#13974638
- ↑ System.ComponentModel.Win32Exception - The System cannot find the file specified error message usually just means GIT can't be found: https://community.atlassian.com/t5/Sourcetree-questions/System-ComponentModel-Win32Exception-The-System-cannot-find-the/qaq-p/295635
- ↑ Opening repositories fails with System.ComponentModel.Win32Exception: The system cannot find the file specified: https://jira.atlassian.com/browse/SRCTREEWIN-7964?error=login_required&error_description=Login+required&state=3ae7daf6-07d5-4c54-b8ec-f4fa007f92ce (switch to separate "embedded GIT" if problem persists)
- ↑ Linus Torvalds on GIT merge .vs. rebase -- Re: [git pull] drm-next: https://www.mail-archive.com/dri-devel@lists.sourceforge.net/msg39091.html
- ↑ What GIT branching model works for you?: https://stackoverflow.com/questions/2621610/what-git-branching-models-work-for-you
- ↑ Squash several Git commits into a single commit: https://makandracards.com/makandra/527-squash-several-git-commits-into-a-single-commit
- ↑ How to use git merge --squash?:https://stackoverflow.com/questions/5308816/how-to-use-git-merge-squash
- ↑ Squash my last X commits together using Git: https://stackoverflow.com/questions/5189560/squash-my-last-x-commits-together-using-git
- ↑ How to squash commits in git after they have been pushed?: https://stackoverflow.com/questions/5667884/how-to-squash-commits-in-git-after-they-have-been-pushed
- ↑ In git, what is the difference between merge --squash and rebase?: https://stackoverflow.com/questions/2427238/in-git-what-is-the-difference-between-merge-squash-and-rebase
- ↑ GIT -- How to squash several commits that have been pushed to a remote repo?: https://stackoverflow.com/questions/7774801/git-how-to-squash-several-commits-that-have-been-pushed-to-a-remote-repo
- ↑ Cherry-pick automation with Bash: https://blog.frankel.ch/cherry-pick-automation-bash/
- ↑ Setting up a git remote origin: https://stackoverflow.com/questions/7259535/setting-up-a-git-remote-origin
- ↑ GitHub guide to adding a remote: https://help.github.com/en/articles/adding-a-remote