📜  git 使用 vim - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:27.830000             🧑  作者: Mango

代码示例2
$ cd
$ mv .vimrc .vim/vimrc
$ echo "runtime vimrc" > .vimrc
$ cd .vim
$ git init
$ echo "This is my Vim config." > README
$ git add *
$ git commit -m "My Vim config is versioned."
$ git remote add origin https://github.com/username/vimconfig.git
$ git push origin master