Last active
December 9, 2020 14:05
-
-
Save achraf-jeday/49bcfee07984fac3164a8dea55d78421 to your computer and use it in GitHub Desktop.
Git: git rebase and git -D
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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