If you have advanced technical skills you can also bulk move all the issues from one project to another in the rails console. The below script will move all the issues from one project to another that are not in status **closed**.
To access rails console run `sudo gitlab-rails console` on the GitLab server and run the below script. Please be sure to change **project**, **admin_user** and **target_project** to your values. We do also recommend [creating a backup](https://docs.gitlab.com/ee/raketasks/backup_restore.html#creating-a-backup-of-the-gitlab-system) before attempting any changes in the console.
```ruby
project=Project.find_by_full_path('full path of the project where issues are moved from')
issues=project.issues
admin_user=User.find_by_username('username of admin user')# make sure user has permissions to move the issues
target_project=Project.find_by_full_path('full path of target project where issues moved to')