You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use Git Shell for Windows as a part of my work flow. I confirmed the lua folder path was added to the windows environmental PATH variables however I could not get lua to work with Git Shell. Does anyone know how to do this?
The text was updated successfully, but these errors were encountered:
Here are the steps to configure a Lua alias on Windows using Git Bash:
Open Git Bash.
Check if the .bash_profile file exists. If it does, open it. If it doesn't exist, create a new .bash_profile file.
In the .bash_profile file, add a line to map the lua command to lua.exe.
Save and close the .bash_profile file.
Reload the .bash_profile file.
Here's a complete step-by-step guide and code example:
# Open Git Bash# Check if .bash_profile file exists
ls ~/.bash_profile
# If the .bash_profile file exists, open it
vim ~/.bash_profile
# Add the following line in the .bash_profile filealias lua='lua.exe'# Save and close the .bash_profile file
:wq
# Reload the .bash_profile filesource~/.bash_profile
I use Git Shell for Windows as a part of my work flow. I confirmed the lua folder path was added to the windows environmental PATH variables however I could not get lua to work with Git Shell. Does anyone know how to do this?
The text was updated successfully, but these errors were encountered: