dulhaver

can't_merge

Oct 29th, 2021 (edited)
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.40 KB | None | 0 0
  1. user@hostname:~/path/to/repo> git merge feature_branch-2
  2. error: Merging is not possible because you have unmerged files.
  3. hint: Fix them up in the work tree, and then use 'git add/rm <file>'
  4. hint: as appropriate to mark resolution and make a commit.
  5. fatal: Exiting because of an unresolved conflict.
  6. user@hostname:~/path/to/repo>
  7. user@hostname:~/path/to/repo> #################################################################################################
  8. user@hostname:~/path/to/repo> #################################################################################################
  9. user@hostname:~/path/to/repo>
  10. user@hostname:~/path/to/repo> git status
  11. On branch master
  12. Your branch is up to date with 'origin/master'.
  13.  
  14. You have unmerged paths.
  15.   (fix conflicts and run "git commit")
  16.   (use "git merge --abort" to abort the merge)
  17.  
  18. Changes to be committed:
  19.         modified:   .gitignore
  20.         new file:   step/README.md
  21.         new file:   step/postgres_install/README.md
  22.         new file:   step/postgres_install/ansible.cfg
  23.         new file:   step/postgres_install/defaults.yml
  24.         renamed:    step/step_server_env/defaults_postgres.yml -> step/postgres_install/defaults_postgres.yml
  25.         new file:   step/postgres_install/files/.alias
  26.         new file:   step/postgres_install/files/.bashrc
  27.         new file:   step/postgres_install/files/.editrc
  28.         new file:   step/postgres_install/files/.forward
  29.         new file:   step/postgres_install/files/.toprc
  30.         new file:   step/postgres_install/files/backup_postgres.sh.9
  31.         new file:   step/postgres_install/files/bin/.pg.env
  32.         new file:   step/postgres_install/files/bin/client-postgres
  33.         new file:   step/postgres_install/files/bin/postgresql.service
  34.         new file:   step/postgres_install/files/bin/postgresql_rpm.service
  35.         new file:   step/postgres_install/files/bin/start-postgres
  36.         new file:   step/postgres_install/files/bin/status-postgres
  37.         new file:   step/postgres_install/files/bin/stop-postgres
  38.         new file:   step/postgres_install/files/bin/stop-postgres-immediate
  39.         new file:   step/postgres_install/files/pg-rhel7-env.tar.gz
  40.         new file:   step/postgres_install/files/pg_hba.conf
  41.         new file:   step/postgres_install/files/postgresql.conf
  42.         new file:   step/postgres_install/files/postgresql.conf.9.2
  43.         new file:   step/postgres_install/files/scb_opensource_postgres.cfg
  44.         new file:   step/postgres_install/inventory.yml
  45.         new file:   step/postgres_install/postgres_install.yml
  46.         new file:   step/postgres_install/postgres_install.yml.copy
  47.         new file:   step/postgres_install/postgres_install_from_repo.yml
  48.         new file:   step/postgres_install/sed-test.yml
  49.         deleted:    step/step_server_env/.gitignore
  50.         modified:   step/step_server_env/README.md
  51.         modified:   step/step_server_env/ansibleSequence.sh
  52.         deleted:    step/step_server_env/get_postgres_test.yml
  53.         modified:   step/step_server_env/inventory.yml
  54.         new file:   step/step_server_env/prepare_step_server_and_resize.yml
  55.         deleted:    step/step_server_env/remove_parted.yml
  56.         modified:   step/step_server_env/resize_vgsys-postgres.yml
  57.         modified:   step/step_server_env/step_user_env.yml
  58.  
  59. Unmerged paths:
  60.   (use "git add <file>..." to mark resolution)
  61.         both modified:   step/step_server_env/prepare_step_server.yml
  62.  
Add Comment
Please, Sign In to add comment