Git Command to add username and email in Aptana Studio

Use the following commands in Aptana Studio terminal to configure username and email for Git access.

git config user.name "<yourname>"
git config --global user.email "<yourEmailId>"

Search