使用git工具对本地文件进行版本管理演示 |
使用git工具对本地文件进行版本管理
演示
[win + mingw64]
E:\Buffer\a
repo
ws
step1
cd /e/Buffer/a/repo
git init --bare
step2
cd /e/Buffer/a/ws
git clone /e/Buffer/a/repo
cd /e/Buffer/a/ws/repo
echo hi>hi.txt
git add .
git commit -m "test"
git push
查看
git remote -v
git log origin/master