Skip to content

cvagner/docker-git-sim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

git-sim docker image

git-sim visually simulates Git operations in your own repos.

Links:

Running

Get help with:

docker run --rm cvagner/git-sim

Example to get a video for a merge:

# Change dir to the root dir of your repo
cd my-git-repo

# Create git-sim_media with current user (once)
mkdir -p git-sim_media

# Here it creates a video for a merge
docker run --rm \
  -u $(id -u):$(id -g) \
  -v $(pwd):/app:ro \
  -v $(pwd)/git-sim_media/:/app/git-sim_media/ \
  cvagner/git-sim \
  \
  --animate merge <my-branch-name>

Open file shown in termial (remove /app/ which is path in docker). Example:

xdg-open ./git-sim_media/videos/1080p60/GitSimMerge.mp4

Building

docker build --tag=cvagner/git-sim .

Publishing

docker login
docker push cvagner/git-sim

About

git-sim docker image

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published