DrewImm / FedoraDev

A shell script to have a nice Fedora development environment
0 stars 0 forks source link

Add gitcache script #13

Open DrewImm opened 5 years ago

DrewImm commented 5 years ago

~/gitcache

#!/bin/bash
git config --global credential.helper "cache --timeout 86400";
git config credential.helper store;
git push;

$ chmod 755 gitcache

~/.bashrc

...
alias gitcache='~/gitcache'