Cijo
Cijo

Reputation: 2866

How to Run Git commands on Netbeans 8.0.2

I want to run some git commands locally to clean up some stuffs. I am on Windows and i am unable to use the netbeans terminal. Git command is not recognized. So my question is i there is a way to run

   git rm *.exe

or some other commands. I don't want to use GUI of Netbeans here.

Upvotes: 1

Views: 739

Answers (1)

VonC
VonC

Reputation: 1323793

Sure; unzip the archive PortableGit-2.7.4-64-bit.7z.exe anywhere you want, add its folder (/bin) to your %PATH%, and git will be recognized.

Go to the root folder of your git repo, and do a git status to check that git is working.

Upvotes: 2

Related Questions