Bookmarks on different topics:
% docker-machine start linux
% docker ps
% docker images
% docker run -it alpine sh
1. Local committed changes
2. git pull -r origin master
CASE you forgot -r(rebase) in previous command then do to resolve merge commit:
> git rebase -i
> git commit --amend (remove the pre-existing gerrit change Id or push will be rejected)
3. git push origin HEAD:refs/for/master
- Add to build.gradle
bootRun {
systemProperties = System.properties
}- Run bootRun task
gradlew -Dspring.profiles.active=dev bootRun- To add local dependency instead use
//compile 'com.xyz:foo-bar:2.+'
compile fileTree(dir: 'c:/git/xyz/build/libs', include: '*.jar')