Git
​
​
Git Installation And Setup On Windows
​
​
​
​
​
​
​
​
Connect Remote Repository To Local Repository
​
​
Git Help
​
​
What Is Git Help ?
​
Git help is a command that is used to access a list of git commands or options.
​
Basically Git help helps in two ways as-
(i) Provides list of available subcommands :
* Open cmd or Git Bash.
* Type 'git help -a'.
* Hit the 'Enter' button.
* A list of subcommands will be displayed on console screen.
​
​
​
​
​
​
​
​
​
​
​
​
(ii) Provides some concept guides :
* Open cmd or Git Bash.
* Type 'git help -g'.
* Hit the 'Enter' button.
* Concept guides will be displayed on console screen.
​
​
​
​
​
​
​
​
​
​
​
​
​
​
Access Git help for particular command :
* Open cmd or Git Bash.
* Type 'git help <command>' ,e.g. 'git help commit'
* Press 'Enter'.
* It will open a manual for the mentioned command in the default web browser.
​
​
​
​
​
​
​
​
​
​
​
​
Access Git help for particular concept guide:
* Open cmd or Git Bash.
* Type 'git help <concept>' ,e.g. 'git help commit'
* Press 'Enter'.
* It will open a manual for the mentioned command in the default web browser.
​
​
​
Refer next page Create A Git Repository
​
![git help -a.png](https://static.wixstatic.com/media/3bc9da_e318913ac0c1468d8fc816e0e3ab7d48~mv2.png/v1/fill/w_417,h_224,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/git%20help%20-a.png)
![git help -g.png](https://static.wixstatic.com/media/3bc9da_eacd220e252c46beb39bead7711d7619~mv2.png/v1/fill/w_427,h_224,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/git%20help%20-g.png)
![git help commit.png](https://static.wixstatic.com/media/3bc9da_89f0e78b59334c4281859251be373f67~mv2.png/v1/fill/w_395,h_205,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/git%20help%20commit.png)
![commit manual.png](https://static.wixstatic.com/media/3bc9da_e0b10aadcb5c4ff5a4698acb476fe913~mv2.png/v1/fill/w_408,h_205,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/commit%20manual.png)