forked from Workshops/How-To-Git-Started
better code blocks
This commit is contained in:
parent
2537523d7d
commit
830bc551c4
39
README.md
39
README.md
@ -122,24 +122,27 @@ Check the logs
|
|||||||
|
|
||||||
Configure user information for all local repositories
|
Configure user information for all local repositories
|
||||||
|
|
||||||
`$ git config --global user.name "[name]"`
|
```shell
|
||||||
|
$ git config --global user.name "[name]"
|
||||||
|
```
|
||||||
Sets the name you want attached to your commit transactions
|
Sets the name you want attached to your commit transactions
|
||||||
|
|
||||||
`$ git config --global user.email "[email address]"`
|
```shell
|
||||||
|
$ git config --global user.email "[email address]"
|
||||||
|
```
|
||||||
Sets the email you want attached to your commit transactions
|
Sets the email you want attached to your commit transactions
|
||||||
|
|
||||||
`$ git config --global color.ui auto`
|
|
||||||
|
|
||||||
Enables helpful colorization of command line output
|
|
||||||
```shell
|
```shell
|
||||||
|
$ git config --global color.ui auto
|
||||||
|
```
|
||||||
|
Enables helpful colorization of command line output
|
||||||
|
|
||||||
If you want to save your https credentials run
|
If you want to save your https credentials run
|
||||||
```shell
|
```shell
|
||||||
git config --global credential.helper store
|
git config --global credential.helper store
|
||||||
Omit --global to set the identity only in this repository.
|
Omit --global to set the identity only in this repository.
|
||||||
```
|
```
|
||||||
|
|
||||||
Or you can add an [SSH key](https://help.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account)
|
Or you can add an [SSH key](https://help.github.com/en/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account)
|
||||||
|
|
||||||
### Terminal commands
|
### Terminal commands
|
||||||
@ -172,23 +175,30 @@ Any commits you make will be made on the branch you’re currently “checked ou
|
|||||||
Use git status to see which branch that is.
|
Use git status to see which branch that is.
|
||||||
|
|
||||||
Creates a new branch
|
Creates a new branch
|
||||||
`$ git branch [branch-name]
|
```shell
|
||||||
git checkout -b <branchname>
|
$ git branch [branch-name]
|
||||||
`
|
$ git checkout -b [branch-name]
|
||||||
|
```
|
||||||
|
|
||||||
Switches to the specified branch and updates the working directory
|
Switches to the specified branch and updates the working directory
|
||||||
`$ git checkout [branch-name]`
|
```shell
|
||||||
|
$ git checkout [branch-name]
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Combines the specified branch’s history into the current branch. This is usually done in pull requests, but is an important Git operation.
|
Combines the specified branch’s history into the current branch. This is usually done in pull requests, but is an important Git operation.
|
||||||
` $ git merge [branch] `
|
```shell
|
||||||
|
$ git merge [branch]
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Deletes the specified branch
|
Deletes the specified branch
|
||||||
` $ git branch -d [branch-name] `
|
```shell
|
||||||
|
$ git branch -d [branch-name]
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Seeing available branches
|
Show all available branches
|
||||||
```shell
|
```shell
|
||||||
git branch -a
|
git branch -a
|
||||||
```
|
```
|
||||||
@ -203,6 +213,7 @@ Delete remote branch
|
|||||||
git push <remote_name> --delete <branch_name>
|
git push <remote_name> --delete <branch_name>
|
||||||
git remote prune <remote_name>
|
git remote prune <remote_name>
|
||||||
```
|
```
|
||||||
|
|
||||||
Check the log in graph form
|
Check the log in graph form
|
||||||
```shell
|
```shell
|
||||||
git log --graph --oneline
|
git log --graph --oneline
|
||||||
|
Loading…
Reference in New Issue
Block a user