-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1402b52
commit 95c2d5b
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#### Syntax to Copy from Container to Docker Host | ||
|
||
```docker cp {options} CONTAINER:SRC_PATH DEST_PATH``` | ||
#### Syntax to Copy from Docker Host to Container | ||
|
||
```docker cp {options} SRC_PATH CONTAINER:DEST_PATH``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#### git reset locally | ||
|
||
`git reset --hard unico arquivo` | ||
|
||
`git checkout HEAD -- my-file.txt` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
### run specific groups | ||
`mvn -Dgroups="integration, fast, feature-168"` | ||
|
||
### Exclude tests which tagged with 'slow' | ||
$ mvn -DexcludedGroups="slow" | ||
|
||
### Build a specific module in multi module project | ||
mvn --projects $module-name --also-make install -DskipTests |