Coggle requires JavaScript to display documents.
git add .
git remote add origin https://github.com/am1-dev/testdrivensvelte.git
git rm --cached <file>
git add *.html
git commit -m 'msg'
$git branch mybranch
*
git commit -m "yes"
git merge master
git push --set-upstream origin nuServer
git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/am1-dev/testdrivensvelte.git git push -u origin main
git remote add origin
git push -u origin master
git clone https://github.com/am1-dev/testdrivensvelte.git
cp
cp file1.txt source/file1.txt
mv
mv index.html source/index.html
mv source src
mv src/file1.txt info.txt
open info.txt, code src/index.html
nano info.txt
cat[filename]
cat src/indext.html
cat >
cat > info.txt
Hello World
>
>>
cat -n
less [filename]
head
head -n 5 info.txt
head info.txt
tail
echo hello world
echo "hello world" > info2.txt
mkdir [dirname]
touch [filename]
touch index.html
touch file1.txt file2.txt
rm file3.txt
rm -i file2.txt
rm -r
grep [searchterm] [filename]
find
touch file-{001..100}.txt
find . -name 'file-002.txt"
find . -name "file-0*.txt
find . -empty
find . -name "file-*" -delete
touch file-{001..010}.txt
find . -name "file-*" > output.txt
cat output.txt
ln -s ~/Donwloads dlds
mklink
ln -s [filename][symlinkname]
tar -czvf[tarballfilename][filename]
tar -czvf source.tar.gz src
tar -tzvg source.tar.gz
history
!1602
document.querySelector("li").style.color = 'red'
$(h1)
$("h1")[0].style.color = "blue"
console.error("yes);
console.warn("yellow");
console.dir(document)
console.assert( x > y , {"message ... "});
console.log('hello shatter")
git reset c3b9c778bbd3c1b1a2ecc44b5e5e3b04abcb6b91
git reset --hard c3b9c778bbd3c1b1a2ecc44b5e5e3b04abcb6b91