Skip to content

Instantly share code, notes, and snippets.

@achraf-jeday
Last active December 9, 2020 14:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save achraf-jeday/49bcfee07984fac3164a8dea55d78421 to your computer and use it in GitHub Desktop.
Save achraf-jeday/49bcfee07984fac3164a8dea55d78421 to your computer and use it in GitHub Desktop.
Git: git rebase and git -D
10225 gco develop
10226 git fetch --all
10227 git pull
10228 git branch -D feature/DevOps-Refonte-du-docker
10229 git fetch --all
10230 gco feature/DevOps-Refonte-du-docker
10232 git branch
10234 git rebase origin/develop
10236 git add composer.lock
10238 git rebase --continue
10240 git rm config/sync/language/en/views.view.maillog_overview.yml
10241 git rebase --continue
10243 git commit --no-edit --no-verify
10248 git push origin HEAD -f
10267 git add composer.lock
10273 git commit --no-edit --no-verify --amend
10274 git push origin HEAD -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment