Skip to content

BakerJr1904/Rebasing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rebasing

Lets play with rebasing

The git rebase command allows you to easily change a series of commits, modifying the history of your repository. You can reorder, edit, or squash commits together. Typically, you would use git rebase to: Combine multiple commits into one, delete, or revert commits that are no longer necessary.

Commit Merge rebasing

What is the syntax for rebasing in Git?

Checkout to the desired branch you want to rebase.
Now perform the rebase command as follows: $git rebase 'branch name'

Automatic Rebase is not certified by GitHub.

About

The git rebase command allows you to easily, modify the history of your repository. Typical reasons to use the rebasing command: Combine multiple commits into one. Delete or revert commits that are no longer necessary.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors