push local branch to another remote branch

#include <iostream>
#include <cstdlib>

int main() {
    system("git checkout local_branch"); // Switch to the local branch you want to push
    system("git push origin local_branch:remote_branch"); // Push the local branch to the specified remote branch
    return 0;
}