Skip to content
Snippets Groups Projects
Commit 04d9d701 authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

minor changes

parent 7ecef2db
No related branches found
No related tags found
No related merge requests found
# Best practices # Best practices
* `pull` before `push` * `pull` before `push`
* Work on your <font color="red">own</font> branch (in your own fork), and **not** on `master` and **not** on `develop` * Work on your <font color="red">own</font> branch (in your own fork), and **not** on `master` and **not** on `develop`
* Do **not push** to `master`, but **submit a PR** * Do **not push** to `master`, but **submit a PR**
* Get your code **reviewed** by your peers (submit a PR!) * Get your code **reviewed** by your peers (submit a PR!)
* Submit a PR **often**! * Submit a PR **often**!
* `clone` a repository, do not download the `.zip` file. * `clone` a repository, do not download the `.zip` file.
* Do **not** combine `git` commands * Do **not** combine `git` commands
```bash ```bash
$ git commit -am "myMessage" # do not do this $ git commit -am "myMessage" # do not do this
``` ```
* Stage only 1 file at once using * Stage only 1 file at once using
```bash ```bash
$ git add myFile.md $ git add myFile.md
``` ```
* Commit **only a few files** at once (after multiple separate `git add` commands) * Commit **only a few files** at once (after multiple separate `git add` commands)
* `Push` often - avoid conflicts * `Push` often - avoid conflicts
Remember: **A `push` a day keeps conflicts away!** Remember: **A `push` a day keeps conflicts away!**
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
… actually, **EVERYONE** writing documentation, a script, or code is concerned! … actually, **EVERYONE** writing documentation, a script, or code is concerned!
<div align="center"> <div align="center">
<img src="slides/img/snoopy.png"> <img src="slides/img/snoopy.png" height="400px">
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment