Commit a323b8b8 authored by Amy Qualls's avatar Amy Qualls

Merge branch 'docs-git-topics-tier' into 'master'

Add tiers/metadata to Git-related topics

See merge request gitlab-org/gitlab!62766
parents 1532ff00 9a7c9798
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Bisect # Bisect **(FREE)**
- Find a commit that introduced a bug - Find a commit that introduced a bug
- Works through a process of elimination - Works through a process of elimination
......
...@@ -5,7 +5,7 @@ info: To determine the technical writer assigned to the Stage/Group associated w ...@@ -5,7 +5,7 @@ info: To determine the technical writer assigned to the Stage/Group associated w
comments: false comments: false
--- ---
# Cherry Pick # Cherry pick **(FREE)**
Given an existing commit on one branch, apply the change to another branch. Given an existing commit on one branch, apply the change to another branch.
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Feature branching # Feature branching **(FREE)**
- Efficient parallel workflow for teams - Efficient parallel workflow for teams
- Develop each feature in a branch - Develop each feature in a branch
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Getting Started # Getting started **(FREE)**
## Instantiating Repositories ## Instantiating Repositories
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Git Add # Git Add **(FREE)**
Adds content to the index or staging area. Adds content to the index or staging area.
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Git Log # Git Log **(FREE)**
Git log lists commit history. It allows searching and filtering. Git log lists commit history. It allows searching and filtering.
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Merge conflicts # Merge conflicts **(FREE)**
- Happen often - Happen often
- Learning to fix conflicts is hard - Learning to fix conflicts is hard
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Rollback Commits # Rollback commits **(FREE)**
## Undo Commits ## Undo Commits
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Git Stash # Git Stash **(FREE)**
We use `git stash` to store our changes when they are not ready to be committed We use `git stash` to store our changes when they are not ready to be committed
and we need to change to a different branch. and we need to change to a different branch.
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Subtree # Subtree **(FREE)**
- Used when there are nested repositories. - Used when there are nested repositories.
- Not recommended when the amount of dependencies is too large. - Not recommended when the amount of dependencies is too large.
......
...@@ -4,7 +4,7 @@ group: Source Code ...@@ -4,7 +4,7 @@ group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
--- ---
# Tags # Tags **(FREE)**
Tags are useful for marking certain deployments and releases for later Tags are useful for marking certain deployments and releases for later
reference. Git supports two types of tags: reference. Git supports two types of tags:
......
--- ---
stage: none stage: Create
group: unassigned group: Source Code
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
comments: false comments: false
--- ---
# Unstage # Unstage **(FREE)**
- To remove files from stage use reset HEAD where HEAD is the last commit of the current branch. This unstages the file but maintain the modifications. - To remove files from stage use reset HEAD where HEAD is the last commit of the current branch. This unstages the file but maintain the modifications.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment