Update Git workflow 1.2 Make changes (#137)
* Update Git workflow 1.2 Make changesi - Advise to use add --patch - Switch to use commit without --all * Fix space * Change usage for git add - Describe specifying file list - Include --patch as tip
This commit is contained in:
parent
716eff01f7
commit
687dad2fac
13
README.md
13
README.md
@ -98,11 +98,18 @@ Because of most of the reasons above, we use [Feature-branch-workflow](https://w
|
||||
```
|
||||
* Make Changes.
|
||||
```sh
|
||||
git add
|
||||
git commit -a
|
||||
git add <file1> <file2> ...
|
||||
git commit
|
||||
```
|
||||
_Why:_
|
||||
> `git commit -a` will start an editor which lets you separate the subject from the body. Read more about it in *section 1.3*.
|
||||
> `git add <file1> <file2> ... ` - you should add only files that make up a small and coherent change.
|
||||
|
||||
> `git commit` will start an editor which lets you separate the subject from the body.
|
||||
|
||||
> Read more about it in *section 1.3*.
|
||||
|
||||
_Tip:_
|
||||
> You could use `git add -p` instead, which will give you chance to review all of the introduced changes one by one, and decide whether to include them in the commit or not.
|
||||
|
||||
* Sync with remote to get changes you’ve missed.
|
||||
```sh
|
||||
|
Loading…
x
Reference in New Issue
Block a user