Skip to content
Snippets Groups Projects
Select Git revision
  • fc5b88b2a53ffa8dc8fdb4953c6487f6d8a0e068
  • master default protected
2 results

git-clupdate

Blame
  • git-clupdate 83 B
    #!/bin/bash
    
    if [[ -d $2 ]]
    then
    	(cd $2 ; git pull $1)
    else
    	git clone $1 $2
    fi