GIT Commands
GIT Commands
git secrets
git tags
git cherry-pick
===========================================
#!/bin/bash
I=0
mkdir /mygitrepo
touch /mygitrepo/file1
cd /mygitrepo
git init
while [ $I -lt $@ ]; do
echo 'TESTDATA-FROM-SREE-'$I >>file1 && git add .
&& git commit -m COMMIT-$I
I=$(expr $I + 1)
done
I=0
bash script.sh 10
====================================