$ cd d:/repo
$ git clone git@github.com:sunmiao0301/Ceph-Discovery.git
$ cd Ceph-Discovery
# careful
$ git init
$ git status # check
$ git add ./
$ git status # check
$ git commit -m "a message"
$ git status # check
$ git push
$ git status # check
$ cd d:/repo/BackEndDeveloper
$ git lfs install
$ cd d:/repo/BackEndDeveloper
$ git lfs track "*.pdf" # I wanne upload pdf file
$ git status
# Untracked files:
(use "git add <file>..." to include in what will be committed)
.gitattributes
$ git add .gitattributes
$ git commit -m "first for gitattributes"
$ git push
$ git add D:/repo/BackEndDeveloper/02ComputerNetwork/Computer-Network-A-Top-Down-Approach/计算机网络自顶向下方法原书第7版.pdf
$ git commit -m "push large file"
$ git push
— Jan 5, 2022