Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

gitbash command quick reference [closed]

Tags:

Does anyone know where I can find a quick reference for all commands in gitbash for windows? The help command covers the most important, but I can't find info on basic navigation such as getting the current directory, changing directory etc.

like image 454
johnB Avatar asked Jun 27 '11 19:06

johnB


People also ask

How do I close a git bash terminal?

To exit from bash type exit and press ENTER .

How do I run a Gitbash command?

Step 1: Go to Github repository and in code section copy the URL. Step 2: In the Command prompt, add the URL for your repository where your local repository will be pushed. Step 3: Push the changes in your local repository to GitHub. Here the files have been pushed to the master branch of your repository.


1 Answers

from within the git bash shell type:

>cd /bin >ls -l 

You will then see a long listing of all the unix-like commands available. There are lots of goodies in there.

like image 157
Mike Gossland Avatar answered Nov 17 '22 01:11

Mike Gossland