Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
courses
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nene Barry
courses
Commits
a8b97dfb
Commit
a8b97dfb
authored
5 years ago
by
Daniel Duarte
Browse files
Options
Downloads
Patches
Plain Diff
move rebase -i examples into intro
parent
da9006ab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
2019/2019-09-09_testCourseAdv/slides/rebase-iExample.md
+0
-10
0 additions, 10 deletions
2019/2019-09-09_testCourseAdv/slides/rebase-iExample.md
2019/2019-09-09_testCourseAdv/slides/rebase-iIntro.md
+10
-1
10 additions, 1 deletion
2019/2019-09-09_testCourseAdv/slides/rebase-iIntro.md
with
10 additions
and
11 deletions
2019/2019-09-09_testCourseAdv/slides/rebase-iExample.md
deleted
100644 → 0
+
0
−
10
View file @
da9006ab
## Interactive Rebasing
```
bash
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
```
This diff is collapsed.
Click to expand it.
2019/2019-09-09_testCourseAdv/slides/rebase-iIntro.md
+
10
−
1
View file @
a8b97dfb
...
...
@@ -5,4 +5,13 @@ git rebase -i <branch>
```
*
Enables more precise control over the rebased commits
*
Before committing many actions are at disposal
\ No newline at end of file
*
Before committing many actions are at disposal
```
bash
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment