1、其他
ssh-keygen
touch new.txt
cat new.txt
echo ‘new file‘ > new.txt
2、git
git clone 地址
git config --global user.name ""
git config --global user.password ""
git add new.txt
git rm new.txt
git reset --hard HEAD (提交之后不能回复,只能重新clone)
git commit -m "描述"
原文:https://www.cnblogs.com/king-peng/p/9050289.html