Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は間違ったフォルダにいましたが、git initその後にgit pull *repo*. それらをすべて取り除く方法はありますか?
git init
git pull *repo*
init を実行したばかりなので (Windows OS を使用していないと仮定します):
dir=`pwd` cd .. rm -rf $dir mkdir $dir cd $dir git init