Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nmpegetis/04c46790455209bd691a42bb54c85e8c to your computer and use it in GitHub Desktop.
Save nmpegetis/04c46790455209bd691a42bb54c85e8c to your computer and use it in GitHub Desktop.
# Check the files in your workspace that have been changed after rebasing
git status

# Select all files to put be in stage and commit thereafter
git add <files-changed-in-workspace-after-rebase> # if you want all files to be put in stage, then $ git add .

# Optionally, verify that all the files you wanted in stage area are set
git status

# Commit files to your local branch of your local repository, giving a explanatory merge message
git commit # you can also commit inline using git commit -m 'your message using the Commit Message Conventions'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment