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:
- Making a bare repository on the remote side. (git init --bare)
- Adding remote to your local repo (git remote add origin URL)
- 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