Local Eggplant scripts to remote GIT repo

Within eggplant functional, my scripts that are currently local the push feature within the app is grayed out. How do I copy these local scripts to remote git repository

You would first need to clone/checkout the repository before you can push to it.

If you have not already setup a remote repo, you can do so by:

  1. Making a bare repository on the remote side. (git init --bare)
  2. Adding remote to your local repo (git remote add origin URL)
  3. Pushing from local to remote (git push origin master)

See here for more:
https://git-scm.com/book/en/v2/Git-Basics-Working-with-Remotes